JQuery Programmer Question:
Download Questions PDF

What is the difference between jquery.size() and jquery.length?

JQuery Programmer Interview Question
JQuery Programmer Interview Question

Answer:

jQuery .size() method returns number of element in the object. But it is not preferred to use the size() method as jQuery provide .length property and which does the same thing. But the .length property is preferred because it does not have the overhead of a function call.

Download JQuery Programmer Interview Questions And Answers PDF

Previous QuestionNext Question
Can we include multiple version of jQuery? If yes, then how they are executed?What does $("div") will select?