Click here to Skip to main content
15,913,027 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Dear Experts,


I have stuck in my asp.net project......


HTML
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>

    <script type='text/javascript'>

    $(document).ready(function () {

        $("#myhref").on("click", function (e) {

        alert("Hello world - Alert");
        document.write('Hello World!');

    });

});

</script>

</head>
<body>
    <form id="form1" runat="server">
    <div>

    Welcome to my Site..

      <a href="#" id="myhref">Add to cart</a>



    </div>
    </form>
</body>
</html>



Is there any problem with the above code.....

When i click the href link.. but it is not fired any alert.......
please help me..

Thanks....
Posted

You have not linked Jquery JS file

XML
<head runat="server">
    <script src="JavaScript/jquery-1.6.1.min.js" type="text/javascript"></script>
</head>
 
Share this answer
 
v2
Try this:
JavaScript
$(document).ready(function(){
  $("#myhref").click(function(){
        alert("Hello world - Alert");
        document.write('Hello World!');
  });
});



--Amit
 
Share this answer
 
XML
You have to give jquery file reference.
Try this updated code...It will work..Enjoy!! :)



<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>


<title></title>

<script type='text/javascript'>

$(document).ready(function () {

$("#myhref").on("click", function (e) {

alert("Hello world - Alert");
document.write('Hello World!');

});

});

</script>

</head>
<body>
<form id="form1" runat="server">
<div>

Welcome to my Site..

<a href="#" id="myhref">Add to cart</a>



</div>
</form>
</body>
</html>
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900