jQuery attribute selector example
Google - <a rel="nofollow" href="http://www.google.com" lang="en-US">
Yahoo - <a href="http://www.yahoo.com" lang="en" >
Yahoo - <a href="http://www.abc-yahoo.com" lang="-en">
class = "Hello-jQuery"
class = "Hello jQuery"
class = "HellojQuery"
a[rel]
a[rel=nofollow]
a[rel!=nofollow]
a[rel^=nof]
a[rel$=low]
a[href*='yahoo.com']
a[lang|=en]
div[class~=jQuery]
Reset It