/ Published in: jQuery
Expand |
Embed | Plain Text
$('img[src]') $('img[src=test.gif]') $('img[src^=test]') // starts with test $('img[src$=gif]') // ends with "gif" $('img[src*=test]') // contains $('img[src^=test][src$=gif]') // starts wit "test" ends with "gif"
You need to login to post a comment.
