Saved Bookmarks
| 1. |
What Is The Difference Between Jquery.size() And Jquery.length? |
|
Answer» Jquery.size() and jquery.length both RETURNS the NUMBER of ELEMENT found in the object. But, jquery.length is faster than jquery.size() because size() is a method but length is a property. Jquery.size() and jquery.length both returns the number of element found in the object. But, jquery.length is faster than jquery.size() because size() is a method but length is a property. |
|