Revision: 15534
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 9, 2009 10:15 by hasantayyar
Initial Code
$('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"
Initial URL
Initial Description
Initial Title
jquery attribute selectors
Initial Tags
Initial Language
jQuery