Okay so I was having a problem earlier where I could not get my DIV to hide using my script I used some source from google and got the following, I found it to be effective and do the job, however I want it so that when I click my "okay" button that it can close more than just one div.
My script is
<script>
var browserType;
if (document.layers) {browserType = "nn4"}
if (document.all) {browserType = "ie"}
if (window.navigator.userAgent.toLowerCase().match("gecko")) {
browserType= "gecko"
}
function hidethis() {
if (browserType == "gecko" )
document.poppedLayer =
eval('document.getElementById("alertzy")');
else if (browserType == "ie")
document.poppedLayer =
eval('document.getElementById("alertzy")');
else
document.poppedLayer =
eval('document.layers["alertzy"]');
document.poppedLayer.style.visibility = "hidden";
}
</script>
And a small example of what source I have is:
<div id="back" style="visibility: visible;">
<div id="alertzy" style="visibility: visible;">
<p>Some content</p>
<center><a href="#" onclick="hidethis()">hide</a></center>
</div>
</div>
I would like to hide the "back" div also, and I am not great with javascript could anyone help me out?
Thanks in advance!