| To use jQuery we need to simple add below line in our html code file which is as below
< script type="text/javascript" src="/jquery/jquery-1.3.2.min.js">< /script>
And to call function from it we need to use below code
< script type="text/javascript" language="javascript">
$(document).ready(function()
{
$("div").click(function()
{
alert("Hello world!");
});
});
< /script> | | |