InterviewSolution
Saved Bookmarks
| 1. |
How To Use Jquery Library In Our Asp.net Project? |
|
Answer» Download the latest JQUERY LIBRARY from jQuery.com and include the reference to the jQuery library file in our ASPX page. <script SRC="_scripts/jQuery-1.2.6.js" type="text/javascript"></script> <script LANGUAGE="javascript"> $(document).ready(function() { alert('test'); }); </script>Download the latest jQuery library from jQuery.com and include the reference to the jQuery library file in our ASPX page. |
|