About 50 results
Open links in new tab
  1. What is the difference between JavaScript and jQuery?

    Nov 29, 2013 · What is the main difference between JavaScript and jQuery. I know the minor difference like jQuery is high performance more reliable.

  2. What is the difference between AJAX with JavaScript and jQuery?

    It uses javascript to construct an XMLHttpRequest (varies between browsers). jQuery is a javascript framework that can be used to manipulate the DOM (search and interact with the DOM). jQuery …

  3. javascript - What's the difference between '$ (this)' and 'this ...

    Once the jQuery object is constructed, the jQuery API is now exposed. When a jQuery api function is called, it will internally iterate over this array-like structure. For each item in the array, it calls the …

  4. What is the difference between "$variable" and "variable" - JavaScript ...

    Mar 16, 2013 · There is no difference. Javascript allows the $ character in identifiers, such as variable and function names, just as it allows letters, digits, and certain other punctuation characters to be …

  5. javascript - jQuery: difference between .click () AND .on ("click ...

    Nov 5, 2011 · At the end of the day, every event is bound to some element in the DOM. In the case of .bind, you're binding directly to the element (or elements) in your jQuery object. If, for example, your …

  6. Difference between .click () and actually clicking a button ...

    Apr 18, 2017 · Difference between .click () and actually clicking a button? (javascript/jQuery) Asked 13 years, 8 months ago Modified 6 years, 2 months ago Viewed 22k times

  7. Differences between detach (), hide () and remove () - jQuery

    Feb 9, 2011 · hide() sets the matched elements' CSS display property to none. remove() removes the matched elements from the DOM completely. detach() is like remove(), but keeps the stored data …

  8. javascript - How to calculate number of days between two dates?

    Feb 13, 2009 · 99% of the cases where the user asks for "number of days between two dates" what she doesn't understand is that she is trying to compare apples with pears. The problem becomes so …

  9. Which equals operator (== vs ===) should be used in JavaScript ...

    Dec 11, 2008 · I'm using JSLint to go through JavaScript, and it's returning many suggestions to replace == (two equals signs) with === (three equals signs) when doing things like comparing …

  10. Difference between jQuery .hide() and .css("display", "none")

    Nov 26, 2012 · In the jQuery source code, you can see how they're setting the display property to "" (an empty string) to check what it was before any jQuery manipulation: little link. On the other hand, …