Finding out the opacity of an image?
Hi, if I have four images in set up like this:
- <div id="holder">
- <img src="assets/1.png" style="opacity:1";
- <img src="assets/2.png" style="opacity:1";
- <img src="assets/3.png" style="opacity:0.3";
- <img src="assets/4.png" style="opacity:1";
- </div>
Is it possible to filter and return the number of images that has not got its opacity set to 1?
Thanks in advance.