Hi, I'm displaying a html form, based in some condition some parts of the form are displayed, for examples like this:
if($xtip==1){
echo "<td><input type='text' name='txtrefsol 'size='10' onKeyDown='enviarSalto(event, 'txtrefsol');' ></td>";
}
so, my problem is that the function enviarSalto() is not triggered, in fact, if i display the same line outside the echo function, it works; so my question is:
- how can I trigger the function enviarsalto when i use echo function to draw the object inside the form?
best regards