jQuery Tutorial plus Question:
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>
<script src="_scripts/jQuery-1.2.6.js" type="text/javascript"></script>
<script language="javascript">
$(document).ready(function() {
alert('test');
});
</script>
Previous Question | Next Question |
How to use jQuery? | Can you give me a brief history of your programming days? Where did it all start? |