const url = '/prd/index.php/poder-judicial/guia-judicial/circunscripcion-nro-5/';
const url_separada = url.split('/');
let tag = '';
url_separada.forEach(value => {
switch(value) {
case 'corte-suprema':
tag = 'corte-suprema-de-justicia';
break;
case 'juzgados-comuntiarios-de-las-pequenas-causas':
tag = 'juzgados-comunitarios-de-las-pequenas-causas';
break;
case 'circunscripcion-nro-1':
tag = 'circunscripcion-no1';
break;
case 'circunscripcion-nro-2':
tag = 'circunscripcion-no2';
break;
case 'circunscripcion-nro-3':
tag = 'circunscripcion-no3';
break;
case 'circunscripcion-nro-4':
tag = 'circunscripcion-no4';
break;
case 'circunscripcion-nro-5':
tag = 'circunscripcion-no5';
break;
default:
break;
}
});
let inputOrg = document.getElementById('search-organismos-input');
const form_Org = document.getElementById('form_8804');
form_Org.addEventListener("keydown", (event) => {
if (event.key == 'Enter') {
event.preventDefault();
(inputOrg.value.length > 2) ? busquedaOrg() : false;
}
});
function validarBotonOrg() {
if ( inputOrg.value.length > 2) {
document.getElementById('search-organismos-button').removeAttribute('disabled');
} else {
document.getElementById('search-organismos-button').setAttribute('disabled', true);
}
}
function busquedaOrg() {
let url_final_org = 'http://devpjweb.i2tsa.com.ar/prd/?s='+inputOrg.value+'&tag='+tag+'&wpessid=8804';
window.location.replace(url_final_org);
}
Apellido y Nombre:
let inputAut = document.getElementById('search-autoridades-input');
const form_Aut = document.getElementById('form_8807');
form_Aut.addEventListener("keydown", (event) => {
if (event.key == 'Enter') {
event.preventDefault();
(inputAut.value.length > 2) ? busquedaAut() : false;
console.log("hola");
}
});
function validarBotonAut() {
if ( inputAut.value.length > 2) {
document.getElementById('search-autoridades-button').removeAttribute('disabled');
} else {
document.getElementById('search-autoridades-button').setAttribute('disabled', true);
}
}
function busquedaAut() {
let url_final_aut = 'http://devpjweb.i2tsa.com.ar/prd/?s='+inputAut.value+'&tag='+tag+'&wpessid=8807';
window.location.replace(url_final_aut);
console.log("chau");
}