Jquery
-
I am new For Jquery ,I want to use jquery in VS2005 but I am not doing. I write a code to display hello on button click but nothing is happen after button click. I think I did not get reference of query.js file. How to use???????????? <script type="text/javascript"> $(document).ready(function() { $("#Button1").click(function() { alert("Hello world!"); }); });
-
I am new For Jquery ,I want to use jquery in VS2005 but I am not doing. I write a code to display hello on button click but nothing is happen after button click. I think I did not get reference of query.js file. How to use???????????? <script type="text/javascript"> $(document).ready(function() { $("#Button1").click(function() { alert("Hello world!"); }); });
$
meansdocument.getElementById
document.ready
means when Document is loaded completely.$('Button1').click(
means bind the function with the event. :rose: Read simple javascript concept before you use library, so that you could understand the the library properly. :rose::rose:Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templates