When I want to hide a HTML , I use the following JavaScript code: var div = document.getElementById(\'myDiv\'); div.style.visibility
, I use the following JavaScript code: var div = document.getElementById(\'myDiv\'); div.style.visibility
var div = document.getElementById(\'myDiv\'); div.style.visibility
$('#myDiv').hide() will hide the div...
$('#myDiv').hide()