Which is fast document.getElementByID('txtName') or $('#txtName').?
Answer / chaitanya
Native JavaScipt is always fast. jQuery method to select txtName "$('#txtName')" will internally makes a call to document.getElementByID('txtName'). As jQuery is written on top of JavaScript and it internally uses JavaScript only So JavaScript is always fast.
| Is This Answer Correct ? | 0 Yes | 0 No |
How to add or remove classes to an element in jquery?
What is the use of toggle() method in jquery?
How to execute jQuery code after the DOM is ready?
Is it possible to use our own specific character in the place of $ sign in jquery? : jquery mobile
What is the difference between "#" and "." selector in JQuery?
Why we need jquery mobile? : jquery mobile
Explain the difference between .js and .min.js?
Can you please explain the difference between body onload() and document.ready() function? : jquery mobile
How to check if number is numeric while using jquery 1.7+? : jquery mobile
What is serialize() in jquery?
What is chaining in jQuery?
What is the difference between jquery-x.x.x.js and jquery.x.x.x min.js?