esete es el codigo js
Código javascript:
Ver original
function CallOpt(Node,JSs){ while (Node.firstChild) { if(Node.firstChild.id=='del'){ Node.removeChild(Node.firstChild); } } if(JSs.value=="" || JSs.value==null){ Node.setAttribute('disabled','disabled'); }else{ JSa = eval("(" + JSs.value + ")"); for(cont=0;cont<JSa[0].length;cont++){ elemento=document.createElement('option'); var puntero=Node; puntero.appendChild(elemento); nodotexto=document.createTextNode(JSa[1][cont]); elemento.appendChild(nodotexto); elemento.setAttribute('value',JSa[0][cont]); elemento.setAttribute('id','del'); } } }
y la llamada es la siguiente
Código php:
Ver original
<select name="Comuna" onchange="do_web_service3_CallBarr();" onblur="CallOpt(document.form1.CBarrio,document.form1.Hcom);"> <option value="<?php echo $row_Candidato['Comuna']; ?>" id="notdel" selected="selected">Seleccionar</option> </select>
Gracias