www.religionenlibertad.com Open in urlscan Pro
167.233.3.76  Public Scan

Submitted URL: http://www.religionenlibertad.com//secciones//1//737//autor//autores.html
Effective URL: https://www.religionenlibertad.com//secciones//1//737//autor//autores.html
Submission: On August 19 via api from US — Scanned from CA

Form analysis 1 forms found in the DOM

Name: buscarPOST /busqueda/1/religionenlibertad

<form name="buscar" class="searchForm search" action="/busqueda/1/religionenlibertad" method="post">
  <div id="buscar_lupa" class="buscar_lupa">
    <div>
      <input type="text" name="param_busq" id="param_busq" value="" class="caja_buscar" placeholder="Buscar..." autocomplete="off" size="17">
      <button type="submit" form="buscar" value="Submit" id="btn_buscar"><img loading="lazy" src="/images/lupa_buscar.png"></button>
    </div>
  </div>
  <script type="text/javascript">
    (function($) {
      $.fn.extend({
        filter_input: function(options) {
          var defaults = {
            //CUIDADO CON LA CODIFICACION DEL ARCHIVO, NO OS CARGUEIS ESTO
            regex: /[a-z0-9_\- áéíóúüÁÉÍÓÚÜñÑçÇ'´]/i,
            negkey: false, // use "-" if you want to allow minus sign at the beginning of the string
            live: false,
            events: 'keypress paste',
            allowIntro: true
          };
          var options = $.extend(defaults, options);

          function filter_input_function(event) {
            var input = (event.input) ? event.input : $(this);
            if (event.ctrlKey || event.altKey) return;
            if (event.type == 'keypress') {
              var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
              // 8 = backspace, 9 = tab, 13 = enter, 35 = end, 36 = home, 37 = left, 39 = right, 46 = delete
              if (options.allowIntro && key == 13) {
                return true;
              }
              if (key == 8 || key == 9 || key == 13 || key == 35 || key == 36 || key == 37 || key == 39 || key == 46) {
                // if charCode = key & keyCode = 0
                // 35 = #, 36 = $, 37 = %, 39 = ', 46 = .
                if (event.charCode == 0 && event.keyCode == key) {
                  return true;
                }
              }
              var string = String.fromCharCode(key);
              // if they pressed the defined negative key
              if (options.negkey && string == options.negkey) {
                // if there is already one at the beginning, remove it
                if (input.val().substr(0, 1) == string) {
                  input.val(input.val().substring(1, input.val().length)).change();
                } else {
                  // it isn't there so add it to the beginning of the string
                  input.val(string + input.val()).change();
                }
                return false;
              }
              var regex = new RegExp(options.regex);
            } else if (event.type == 'paste') {
              input.data('value_before_paste', event.target.value);
              setTimeout(function() {
                filter_input_function({
                  type: 'after_paste',
                  input: input
                });
              }, 1);
              return true;
            } else if (event.type == 'after_paste') {
              var string = input.val();
              var regex = new RegExp('^(' + options.regex + ')+$');
            } else {
              return false;
            }
            if (regex.test(string)) {
              return true;
            } else if (typeof(options.feedback) == 'function') {
              options.feedback.call(this, string);
            }
            if (event.type == 'after_paste') input.val(input.data('value_before_paste'));
            return false;
          }
          var jquery_version = $.fn.jquery.split('.');
          if (options.live) {
            if (parseInt(jquery_version[0]) >= 1 && parseInt(jquery_version[1]) >= 7) {
              $(this).on(options.events, filter_input_function);
            } else {
              $(this).live(options.events, filter_input_function);
            }
          } else {
            return this.each(function() {
              var input = $(this);
              if (parseInt(jquery_version[0]) >= 1 && parseInt(jquery_version[1]) >= 7) {
                input.off(options.events).on(options.events, filter_input_function);
              } else {
                input.unbind(options.events).bind(options.events, filter_input_function);
              }
            });
          }
        }
      });

      function cleanStr(str) {
        var find = ['á', 'à', 'ä', 'â', 'Á', 'À', 'Â', 'Ä', 'é', 'è', 'ë', 'ê', 'É', 'È', 'Ê', 'Ë', 'í', 'ì', 'ï', 'î', 'Í', 'Ì', 'Ï', 'Î', 'ó', 'ò', 'ö', 'ô', 'Ó', 'Ò', 'Ö', 'Ô', 'ú', 'ù', 'ü', 'û', 'Ú', 'Ù', 'Ü', 'Û', 'ñ', 'Ñ', 'ç', 'Ç'];
        var replace = ['a', 'a', 'a', 'a', 'A', 'A', 'A', 'A', 'e', 'e', 'e', 'e', 'E', 'E', 'E', 'E', 'i', 'i', 'i', 'i', 'I', 'I', 'I', 'I', 'o', 'o', 'o', 'o', 'O', 'O', 'O', 'O', 'u', 'u', 'u', 'u', 'U', 'U', 'U', 'U', 'n', 'N', 'c', 'C'];
        var replaceString = str;
        for (var i = 0; i < find.length; i++) {
          replaceString = replaceString.replace(find[i], replace[i]);
        }
        replaceString = replaceString.replace(/((.*?)<([^>]+)>)/ig, "");
        replaceString = replaceString.replace(/[^a-zA-Z0-9\ \s]/g, "");
        replaceString = replaceString.replace(/ /g, "+");
        return replaceString;
      };
      $("#param_busq").on("change", function() {
        console.log(cleanStr($(this).val()));
        $("form.search").attr("action", "/busqueda/1/" + cleanStr($(this).val()));
        //$("form.search").attr( "action", "/busqueda/1/"+$(this).val());
      });
      $('.searchForm').submit(function(e) {
        e.preventDefault();
        document.location = $(this).attr('action');
      });
    })(jQuery);
  </script>
  <script>
    $(document).ready(function() {
      $('#btn_lupa').click(function() {
        $('#buscar_lupa').toggle("slow");
        $("#param_busq").focus();
      });
      $("#btn_buscar").click(function() {
        $("#param_busq").val($("#param_busq").val().replace(/ /g, "+"));
        $(this).parents("form").submit();
      });
    });
  </script>
</form>

Text Content

SU PRIVACIDAD ES IMPORTANTE PARA NOSOTROS

Nosotros y nuestros 1438 socios almacenamos y/o accedemos a información en un
dispositivo, como cookies, y procesamos datos personales, como identificadores
únicos e información estándar enviada por un dispositivo para publicidad y
contenido personalizado, medición de publicidad y contenido, investigación de
audiencia y desarrollo de servicios. Con su permiso, nosotros y nuestros socios
podemos utilizar datos de localización geográfica precisa e identificación
mediante las características de dispositivos. Puede hacer clic para otorgarnos
su consentimiento a nosotros y a nuestros 1438 socios para que llevemos a cabo
el procesamiento previamente descrito. De forma alternativa, puede acceder a
información más detallada y cambiar sus preferencias antes de otorgar o negar su
consentimiento. Tenga en cuenta que algún procesamiento de sus datos personales
puede no requerir de su consentimiento, pero usted tiene el derecho de rechazar
tal procesamiento. Sus preferencias se aplicarán solo a este sitio web. Puede
cambiar sus preferencias o retirar su consentimiento en cualquier momento
volviendo a este sitio y haciendo clic en el botón "Privacidad" en la parte
inferior de la página web.
MÁS OPCIONESACEPTO


LUNES, 19 DE AGOSTO DE 2024


 * portada
 * blogs
 * papa francisco
 * españa
 * américa
 * libros
 * otras noticias
   
 * vídeos
 * opinión
 * libros rel
   
 * DONA AHORA
 * SUSCRÍBETE
 * 

historias de conversión historias de evangelización Vida y familia Europa EEUU
Mundo Personajes Polémicas Ciencia y Fe Cultura Nueva Evangelización Vaticano




* NOTICIAS DE ANGÉLICA BARRAGÁN - RELIGIONENLIBERTAD.COM


EL PRISIONERO DE LAS DOS CORONAS: MAXIMILIANO KOLBE


MARTIRIO BLANCO


LA REVOLUCIÓN FRANCESA Y EL FIN DE LA LIBERTAD


UNA SOCIEDAD SIN VÍNCULOS


SAN JUAN BAUTISTA: EL PRECIO DE DEFENDER LA VERDAD


OTRO ATAQUE A LA INOCENCIA


HARRISON BUTKER Y EL ODIO A LA VERDAD


VALE LA PENA ESPERAR


EL PELIGRO DEL LIBERALISMO


UN OBISPO FIEL


EL ESCÁNDALO DE LA CRUZ


SAN JOSÉ, PADRE Y RECTOR


EL ENGAÑO DEL FEMINISMO


DRIES VAN AGT: UN LAMENTABLE FINAL


¡VIVAMOS LA CUARESMA!


EN DEFENSA DE LO SAGRADO


LA AGENDA DEL ENTRETENIMIENTO


UNA PELIGROSA IMPOSICIÓN DE LA OMS


EL SANTO NOMBRE DE JESÚS: CUÁNDO EMPEZÓ A CELEBRARSE, TODO LO QUE NOS ENSEÑA,
QUÉ SIGNIFICA IHS...


¡RECIBAMOS A NUESTRO REDENTOR!


BAJO EL MANTO Y EL MANDO DE LA INMACULADA


ADVIENTO


EL ENEMIGO DE LA PAZ


LA VIDA ES BREVE


LA ORACIÓN QUE GANA BATALLAS


EL FRAUDE CLIMÁTICO


EL DÍA NACIONAL EN RECUERDO DE LOS NIÑOS ABORTADOS


ABAJO LA INTIMIDAD


UN INFORME LGBT DE LA ONU AMENAZA LA LIBERTAD RELIGIOSA


EL ESPLENDOR DE LA VERDAD

 * 1
 * 2
 * 

LO MÁS LEÍDO


 * ALAIN DELON CONFESABA: «CUANDO VAYA AL CIELO, SÉ LO QUE VOY A PEDIR, VER A
   MIS PADRES ESTAR JUNTOS»


 * 9 CONSEJOS DE EXPERTOS PARA PADRES PREOCUPADOS PORQUE SUS HIJOS PARECEN
   ATRAÍDOS POR LO TRANSGÉNERO


 * MUERE SOR AGNES SASAGAWA, VIDENTE DE AKITA... MARÍA LE DIJO: «VEREMOS
   CARDENALES CONTRA CARDENALES»


 * SANTORAL HOY: 18 DE AGOSTO. SAN AGAPITO DE PRÆNESTE, NIÑO MÁRTIR.


 * 9 RASGOS QUE REFLEJAN EL «ENORME IMPACTO» DEL PADRE -O DE SU AUSENCIA- EN EL
   DESARROLLO DE LOS HIJOS


 * LAS ALUSIONES «ECONÓMICAS» DE JESUCRISTO SON TAMBIÉN LECCIONES ESPIRITUALES:
   SIRICO OFRECE ALGUNAS


 * VALIENTE HOMILÍA DEL OBISPO DE BILBAO: HOY SE DECIDE SER HOMBRE O MUJER «SIN
   QUE IMPORTE EL CUERPO»


 * SANTORAL HOY: 17 DE AGOSTO. SAN JACINTO DE POLONIA, PRESBÍTERO DOMINICO.


 * LA ASUNCIÓN EN LOS PAÍSES DE HABLA ALEMANA: DESDE CONSAGRAR HIERBAS HASTA
   PROCESIONES EN BARCO


 * LA MASONERÍA ARREMETE CONTRA ROMA POR «GENERALIZAR» SU CONDENA: «TRABAJAMOS
   POR EL BIEN», ASEGURAN



Portada Vaticano España América Latina Vida y familia
Historias de conversión Historias de evangelización Opinión
Blogs Vídeos
Suscríbete a ReL
Difúndenos
DONA AHORA
Quiénes Somos
Contacto
Tel: 680 30 39 15
Publicidad
Copyright © 2024 Religión en Libertad
Aviso Legal | Política de Privacidad | Política de Cookies | Mapa del sitio