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

Submitted URL: http://www.religionenlibertad.com//secciones//1//203//tag//transexualidad.html
Effective URL: https://www.religionenlibertad.com//secciones//1//203//tag//transexualidad.html
Submission: On August 19 via api from US — Scanned from US

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

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




TRANS

La transexualidad es el intento de fingir que se tiene un sexo distinto al real,
es decir, al natural, el inscrito genéticamente en cada célula. Va ligado a la
disforia de género, una dificultad psíquica para aceptar el propio sexo real.
Tradicionalmente se ayudaba a estas personas con terapia psicológica, pero los
avances en cirugía hoy les ofrecen mutilaciones de genitales y pechos e
implantes... sin que se demuestre que eso les ayude. Ofrecemos testimonios y
análisis sobre la transexualidad.




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

José María Carrera | Madrid | 19 agosto 2024




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

ReL | Madrid | 16 agosto 2024




FACEBOOK BORRA LA CUENTA DEL ATEO DAWKINS POR DECIR QUE «UN BOXEADOR NO DEBE
PELEAR CONTRA MUJERES»

ReL | Madrid | 16 agosto 2024




¿ESTÁ USTED EMBARAZADO? LOS RADIÓLOGOS DE REINO UNIDO DEBERÁN PREGUNTARLO
DURANTE SUS CONSULTAS

ReL | Madrid | 15 agosto 2024




REPASAMOS EL HISTORIAL ANTIVIDA Y ANTICRISTIANO DE TIM WALZ: DATOS QUE DIFUNDE
LA CATHOLIC LEAGUE

Jesús M.C. | Madrid | 08 agosto 2024




KAMALA ELIGE COMO NÚMERO DOS A TIM WALZ, UN ABORTISTA RADICAL Y PROMOTOR DE LA
INDUSTRIA TRANS

Pablo J. Ginés | Madrid | 06 agosto 2024




MELONI, ELON MUSK, J.K.ROWLING... LAS BOXEADORAS Y EL PELIGRO TRANS A LAS
MUJERES DE VERDAD

ReL | Madrid | 02 agosto 2024




DOS PÚGILES DESCALIFICADAS POR NO PASAR EL TEST DE GÉNERO COMBATIRÁN EN PARÍS
COMO MUJERES

ReL | Madrid | 31 julio 2024




MUSK DECLARA LA GUERRA AL «VIRUS WOKE» Y JURA «DESTRUIRLO»: «HA ASESINADO A MI
HIJO, ESTÁ MUERTO»

José María Carrera | Madrid | 24 julio 2024




EL CONSTITUCIONAL ITALIANO SE NIEGA A RECONOCER EL «GÉNERO NO BINARIO»:
«ALTERARÍA TODO EL SISTEMA»

ReL | Madrid | 24 julio 2024




SÁNCHEZ LOGRA QUE EL TC SUSPENDA LA LEY TRANS DE AYUSO: NO HABRÁ ACOMPAÑAMIENTO
PSICOLÓGICO AL MENOR

ReL | Madrid | 19 julio 2024




ELON MUSK TRASLADA «TWITTER» Y SPACEX DE CALIFORNIA A TEXAS POR LAS LEYES TRANS:
«SE COLMÓ EL VASO»

ReL | Madrid | 17 julio 2024






TRANS, JURÓ QUE NUNCA TENDRÍA HIJOS: HOY, CONVERSA, CASADA Y MADRE DE DOS,
EXPANDE SU TESTIMONIO

José María Carrera | Madrid | 15 julio 2024


MANUAL DEL CATÓLICO CON AMIGOS TRANSGÉNERO: 10 RAZONES DE FE PARA LLAMARLES POR
SU NOMBRE BIOLÓGICO

José María Carrera | Madrid | 25 junio 2024


CHILE SUSPENDE LOS TRATAMIENTOS TRANSGÉNERO: ANUNCIA «DIRECTRICES BASADAS EN
EVIDENCIA CIENTÍFICA»

José María Carrera | Madrid | 23 junio 2024


CALIFORNIA IMPULSA QUE LAS ESCUELAS OCULTEN A LOS PADRES QUE SU HIJO USA OTROS
PRONOMBRES

Jesús M.C. | Madrid | 20 junio 2024


UN POCO DE SENSATEZ: LOS JUEGOS OLÍMPICOS NO DEJAN COMPETIR AL TRANS LÍA THOMAS
CONTRA CHICAS

ReL | Madrid | 19 junio 2024


5 HERIDAS QUE LLEVAN A UN NIÑO A LA DISFORIA Y LA TENTACIÓN TRANS Y 8 COSAS QUE
AYUDAN A PREVENIRLAS

José María Carrera | Madrid | 13 junio 2024

1 2 3 4 5 6 7 8 9



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