www.religionenlibertad.com
Open in
urlscan Pro
167.233.3.76
Public Scan
Submitted URL: http://www.religionenlibertad.com//secciones//1//41//tag//eutanasia.html
Effective URL: https://www.religionenlibertad.com//secciones//1//41//tag//eutanasia.html
Submission: On August 19 via api from US — Scanned from DE
Effective URL: https://www.religionenlibertad.com//secciones//1//41//tag//eutanasia.html
Submission: On August 19 via api from US — Scanned from DE
Form analysis
1 forms found in the DOMName: buscar — POST /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 EUTANASIA * Suicidio asistido * Argumentos contra la eutanasia * Cuidados paliativos La eutanasia es matar a una persona enferma, o deprimida, o triste, o cansada de la vida, en principio porque ella lo pide, aunque a veces quien lo pide son sus padres, hijos, herederos o un juez que dictamine que es "por su bien". Aquí encontrarás artículos que muestran que la eutanasia va contra la buena práctica médica, contra la ética, el derecho a vivir, el juramento hipocrático, contra la solidaridad entre generaciones, el avance de la medicina, los cuidados paliativos... ¿LOGRARÁ UN PADRE SALVAR A SU HIJA DE 23 AÑOS QUE PIDE LA EUTANASIA? LO MIRARÁ EL TSJ DE CATALUÑA ReL | Madrid | 07 agosto 2024 UN PADRE LOGRA SALVAR A SU HIJA DE 23 AÑOS DE LA EUTANASIA EN CATALUÑA: SUSPENDEN SU EJECUCIÓN ReL | Madrid | 02 agosto 2024 ENFERMO CRÓNICO Y CON TENDENCIA SUICIDA, RECHAZA «MÚLTIPLES» OFERTAS DE EUTANASIA: «QUIERO VIVIR» ReL | Madrid | 25 junio 2024 TRES AÑOS YA DE EUTANASIA EN ESPAÑA: ASÍ AFECTA PELIGROSAMENTE A LA PSIQUE DEL EUTANASIADOR Pablo J. Ginés | Madrid | 14 junio 2024 «DIGNITAS INFINITA»: UN LISTADO DE HORRORES, PERO POCA CONCRECIÓN U ORIENTACIÓN PARA COMBATIRLOS Pablo J. Ginés | Madrid | 08 abril 2024 EN SOLO DIEZ AÑOS, HOLANDA HA DOBLADO SUS EUTANASIAS; Y HACE 5 VECES MÁS QUE EN 2003: SE BANALIZA Pablo J. Ginés | Madrid | 07 abril 2024 LOS CASOS DE EUTANASIA AUMENTAN UN 15% EN BÉLGICA EN 2023, CON YA MÁS DE 3.400 MUERTES ReL | Madrid | 09 marzo 2024 MARCHA SÍ A LA VIDA, EL 10 DE MARZO EN MADRID: «QUEREMOS CAMBIAR LAS LEYES Y CAMBIAR LA MENTALIDAD» Pablo J. Ginés | Madrid | 20 febrero 2024 LA REFORMA SOBRE LA DISCAPACIDAD, UN CAMBIO IDEOLOGIZADO QUE FAVORECE EL ABORTO Y LA EUTANASIA ReL | Madrid | 22 enero 2024 EN SU PRIMER AÑO Y MEDIO, CON LA LEY DE EUTANASIA YA HAN MATADO A 363 PERSONAS EN ESPAÑA G. de A. | Madrid | 22 diciembre 2023 SEMIDIOSES Y GUSANOS Juan Manuel de Prada | Madrid | 14 diciembre 2023 BELÉN, LA PACIENTE GALLEGA QUE PIDIÓ LA EUTANASIA DEPRIMIDA Y FUE SALVADA POR SU MADRE, ELIGE VIVIR José María Carrera | Madrid | 29 noviembre 2023 BASTOS: «LA FAMILIA Y DIOS SON LOS ÚLTIMOS REDUCTOS QUE QUEDAN FRENTE AL PODER ILIMITADO DEL ESTADO» Juan Cadarso | Madrid | 28 noviembre 2023 PRESIDENTE DE MÉDICOS CATÓLICOS DE ITALIA, SOBRE LA MUERTE DE LA BEBÉ INDI: «HA SIDO UNA BARBARIE» Juan Cadarso | Madrid | 18 noviembre 2023 LA MADRE DE CHARLIE GUARD ANIMA A LOS PADRES DE INDI: «TENEMOS QUE SEGUIR COMBATIENDO AL SISTEMA» G. de A. | Madrid | 14 noviembre 2023 MUERE LA BEBÉ BRITÁNICA INDI: SUS PADRES ESTÁN «INDIGNADOS, DESCONSOLADOS Y AVERGONZADOS» ReL | Madrid | 13 noviembre 2023 QUITAN EL RESPIRADOR A LA BEBÉ INDI, EL PAPA REZA, GIORGIA MELONI PIDE ACTUAR AL GOBIERNO INGLÉS Pablo J. Ginés | Madrid | 11 noviembre 2023 LA IMPACTANTE RAZÓN DEL PADRE DE INDI, LA BEBÉ BRITÁNICA, PARA BAUTIZARLA AUNQUE ÉL NO ES CRISTIANO ReL | Madrid | 09 noviembre 2023 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