Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to get all images in an html with src not empty.

I want to use jquery to select images which just have scr attr not empty.

how to write this jquery selector?

share|improve this question

1 Answer

up vote 4 down vote accepted
$("img[src!='']")
share|improve this answer
this is not empty src? so how empty src should be? – Amr ElGarhy Jul 21 '09 at 15:23
img[src] will select any img element with it's src not empty. – Pim Jager Jul 21 '09 at 15:26
I was actually wrong, haha. I thought that too Pim -- I just tried it, but if you do that, it'll select elements like this as well: <img src="" /> Which is obviously not the best. This works though, according to some testing: $("a[rel!='']") – Salty Jul 21 '09 at 15:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.