C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
.NET
ADO.NET
Android
ASP.NET
C#
Databases & DBA
Design Patterns & Practices
iOS
Java
OOP/OOD
SharePoint
Software Testing
Web Development
WPF
View All
5
Reply
What is Jquery ?
Nilesh Avhad
11y
1.3k
0
Reply
Delete Row
Delete Column
Insert Link
×
Insert
Cancel
Embed YouTube Video
×
Width (%)
Height (%)
Insert
Cancel
Table Options
×
Rows
Columns
First row as header
Create Table
Insert Image
×
Selected file:
Alignment
Left
Center
Right
Select an image from your device to upload
Upload to Server
Cancel
Submit
jQuery is not a language, but it is a well written JavaScript code. and jQuery is a fast, small, and feature-rich JavaScript library.
Sharad Rathore
11y
0
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.
Abhay Shanker
11y
0
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.
Pankaj Bajaj
11y
0
Jquery is advance version of Java script . In That advance feature like jsone, Ajax
Ravi Prakash
11y
0
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");
Nilesh Avhad
11y
0
Message