The Easiest Way to Save and Share Code Snippets on the web

Hide HTML Element (display none)

javascript | by: fplag

posted: Aug, 10th 2009 | jump to bottom

document.getElementById('myElementID').style.display= 'none';
225 views