How to show/hide the image on clicking the hyperlink?
With image class name:
$('.img_class').hide(); // to hide image $('.img_class').show(); // to show image
With image Id :
$('#img_id').hide(); // to hide image $('#img_id').show(); // to show image