Click here to Skip to main content
15,889,877 members
Please Sign up or sign in to vote.
4.56/5 (2 votes)
See more:
How to hide a particular image using Jquery
Posted

Use jQuery .hide()[^] function.
JavaScript
$('#imageId').hide(); // Replace the correct ID of Image.
 
Share this answer
 
Comments
Killzone DeathMan 28-May-13 5:21am    
My 5 stars Tadit ;)
Thanks a lot @Killzone DeathMan... :)

  1. Find the image in question using a jQuery selector[^].
  2. Hide the element found in 1. by invoking .hide()[^] on it.


Regards,
— Manfred
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900