I have the multiple img with the same class name in the html. Any way I can check if the img with the same class name is hide with jquery.
Example: I have the following image code in html
<img src='test1.jpg' class='test' style='display:inline;'>
<img src='test2.jpg' class='test' style='display:none;'>
<img src='test3.jpg' class='test' style='display:inline;'>
<img src='test4.jpg' class='test' style='display:none;'>
How can I using jquery to find all the hidden images?