What is Jquery ? ( ASP.NET Jquery interview questions with answers)
- By Shiv Prasad Koirala in ASP.NET
- Sep 12th, 2013
- 29265
- 0
Jquery is a reusable javascript library which simplifies javascript coding.
So rather than writing lengthy javascript code as below.
document.getElementById("txt1").value = "hello";
By jquery the above javascript code is now simplified as below.
$("#txt1").val("Hello");
So how do we use these jquery libraries?
You need to download Jquery.js file from jquery.com and include the same in your web pages. The jquery files are named with version number like "jquery-1.4.1.js" where 1.4.1 is the version of the JS file. So at the top of your web page you need to include the javascript as shown in the below code.
<script src="Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
We are thankful to questpond.com to provide the below ASP.NET Jquery interview question video
Shiv Prasad Koirala
Visit us @ www.questpond.com or call us at 022-66752917... read more