here is my code-snippet:
<div id="navbar">
<a href="index.html" >
<img class="navbar" src="http://ssss.com/imgs/WG_home.png" />
</a>Home
</div>
function used to hide:
$(document).ready(function() {
alert("hello");
if (location.search=="?value=nohome")
{
$("img[class='navbar']").hide();
}
});
Any one having any idea how to hide the image?
mrana