error, issue, RnD, notes for my colleagues ... anything related with my job. A good programmer should be a good and fast reader. This log just to cut the costs of my RnD. Nothing personal :)
Friday, 18 October 2013
JS: Toggle Visibility
<!--
function toggle_visibility(id, div_id) {
var e1 = document.getElementById(id);
var e2 = document.getElementById(div_id);
if(e1.value=='OTHERS')
e2.style.display='block';
else
e2.style.display='none';
}
//-->
No comments:
Post a Comment