Faqts : Computers : Programming : Languages : JavaScript

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

0 of 2 people (0%) answered Yes
Recently 0 of 2 people (0%) answered Yes

Entry

how to hidden the controls by using java script

Nov 13th, 2006 05:09
Matt Chatterley, samba sa,


var control = document.getElementById('idOfControlHere');
if(control)
{
   control.style.visiblility = 'hidden';
}