5
Reply

What is Jquery ?

Nilesh Avhad

Nilesh Avhad

10y
1.2k
0
Reply

    jQuery is not a language, but it is a well written JavaScript code. and jQuery is a fast, small, and feature-rich JavaScript library.

    jQuery is a new kind of JavaScript library that makes it easier for designers to control HTML events, animations, and other interactions on a web page by adding and removing style sheet handlers. These handlers are either HTML classes or IDs; the handlers are specified in a style sheet, which then tells the browser how to position and style HTML elements. With jQuery, web designers can quickly and easily write these handlers to the document on specified events, such as a mouse click or a hover, and when we do so, it will change the style and/or position of that element. jQuery also simplifies AJAX--the client-side web development techniques for creating interactive web applications. AJAX applications can retrieve data from the server quietly in the background without interfering with how a web page displays or behaves. AJAX uses HTML and CSS (cascading style sheets) to change style and layout via user interaction and input.

    Hi Nilesh,1. JQuery is a library developed in Java Script. 2. Lots of functions already defined makes development easy 3. It supports all major browsers. 4. It supports AJAX , JSON very well.

    Jquery is advance version of Java script . In That advance feature like jsone, Ajax

    Jquery is a reusable javascript library which simplifies javascript coding. So rather than writing length javascript code as below. document.getElementById("txt1").value = "hello";By jquery the above javascript code is now simplified as below.$("#txt1").val("Hello");