How to show/hide the image on clicking the hyperlink?
<script>
function show_image(id)
{
if(id =='band')
{
$("#upload").hide();
$("#bandwith").show();
}
else if(id =='up')
{
$("#upload").show();
$("#bandwith").hide();
}
}
</script>
<a href="#" onclick="javascript:show_image('bandwidth');">Bandwidth</a>
<a href="#" onclick="javascript:show_image('upload');">Upload</a>
<img src="img/im.png" id="band" style="visibility: hidden;" />
<img src="img/im1.png" id="up" style="visibility: hidden;" />