Hi guys
I just want to echo the .length value of all images that has an 'alt' attribute.
- $(document).ready(function(){
-
- $('img[alt]').text("Found " + $("img[alt]").length + " img alt attribute.");
-
- });
Is my codes above correct?
I tried it, and I did not saw any output.
Can you spot the not?
Thanks in advanced.
-warren