jQuery is a flexible javascript framework that lets you do a lot. One major component of jQuery is the concept of the “selector“. If you want to apply some jQuery code to an item, you use it’s selector. For example to turn on a class for all anchor tags (A) you use: $(“a“).toggleClass(“className”, true); The [...]
jQuery: How can I target a specific tag, such as UL? is a post from: Sean Walther's Blog