What is JQuery? and What is difference between javascript and jQuery?
Jquery is a resuable javascript library.
JQuery is not mean to replace javascript.JQuery has derived from Javascript. Javascript is a language.
Let's take simple example to understand How JQuery simplifies code.
Following code shows How to display simple text into textbox using Javascript.
Output of above code:
Now take same example and implement it using jQuery
we required to download jQuery file first.
you can donwload Jquery file from this URL.
jQuery File
Jquery syntax starts with $ sign, after that element name like textbox and then action which we want to perform. In our example action is val.
Following code shows How to display simple text into textbox using JQuery.
Output of above code:
No comments:
Post a Comment