Actually, i know button clicked event in jQuery. But, How do you hide an image when cliked on button using jQuery?
$("#myButton").click(function(){ alert("welcome to jQuery");});
This is very simple to hide image. You use hide() method to hide image in jquery.
See the following example:-
$("#myButton").click(function(){ $('imageIdorName').hide();});