Home:ALL Converter>Is jQuery a client-side or a server-side JavaScript library?

Is jQuery a client-side or a server-side JavaScript library?

Ask Time:2009-11-02T13:14:02         Author:user366312

Json Formatter

Is jQuery a client-side or a server-side JavaScript library?

Author:user366312,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/1659510/is-jquery-a-client-side-or-a-server-side-javascript-library
mauris :

jQuery is a client-side Javascript Framework which you can include in your HTML code using the <script src=\"scripts/jquery.js\"></script> tag. ",
2009-11-02T05:16:28
JP Silvashy :

It's a JavaScript framework that abstracts many complex tasks into well tested methods that are wrapped in the jQuery function.",
2009-11-02T05:17:28
Marek Karbarz :

jQuery is client side",
2009-11-02T05:15:03
Soviut :

Jquery is a client side library used for:\n\n\nTraversing the DOM: Selecting every other paragraph, or getting all the child elements inside a list, for example.\nManipulating the DOM: Wrapping every link in a div tag, changing all tables to red.\nAjax: Sending requests to the server and retrieving and displaying the response the server sends back, without refreshing the whole page.\nAnimation: Fade in, Slide Up, grow, shrink, move, etc.\nBrowser normalization: Make all browsers behave the same way with the same jquery code.\n",
2009-11-02T05:19:41
meder omuraliev :

jQuery is a client side framework that mostly caters toward DOM manipulation and abstracts many DOM methods so you can save lots of typing.\n\nDOM:\n\nvar as = document.getElementsByTagName('a');\n\n\njQuery:\n\n$('a')\n\n\nIt also solves a lot of browser discrepancies so you have more time for rapid development and not have to worry about low-level inconsistencies.",
2009-11-02T05:15:50
yy