jQuery provides very nice way to create DOM(Document Object Model) Element object which are called jQuery Selectors. jQuery selectors are very similar to CSS selectors and work very efficiently. In this tutorial we will explore on various aspect of jQuery Selectors. To understand this tutorial I am expecting the reader to have some basic understanding of JavaScript and DOM objects.
Various people have understanding that jQuery selectors are used to apply CSS property on the element using jQuery. But this statement is not true. Because you can also do much more thing than applying css property. As jQuery selectors create DOM objects, you can do what ever can be done using DOM object. For Example : Changing element text, adding HTML element inside the selected HTML element etc. Continue reading “jQuery Selectors Tutorial”


