
hi there, I am just beginner for jQuery and i want to know-what is jQuery ? How it is better than JavaScript ?

jQuery is a lightweight cross-browser JavaScript library that emphasizes interaction between JavaScript and HTML. Following things make it slightly better than JavaScript :
Each jQuery returns itself so you can chain them together(Chaining of jQuery).
Working with arrays/collections of results as a single unit. For example- You can $('.tabber').hide() could hide all elements of class tabber.
3.Filtering of output is much better than JavaScript.Foe example- $(':input').parents(':not(:first)').show() would show all the parents of every input element except the first parent. 4. The ready made plug-in reduces overhead from developers.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.