Write a jQuery code to disable a link.

 Write a jQuery code to disable a link.

Write a jQuery code to disable a link.

Answer :
File Name : 

<html>
<head>
    <script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
    <title>SP Creation</title>
</head>
<body>
    <div class="container">
        <div id="box" class="col border">
          <a href="www.google.com" id="sp">Google</a>
        </div>
    </div>
    <script>
        $(document).ready(function(){
            $('#sp').click(function(){
                event.preventDefault();
            });
        });
    </script>
</body>
</html>
Write a jQuery code to disable a link. Write a jQuery code to disable a link. Reviewed by technical_saurabh on April 30, 2021 Rating: 5

No comments:

Powered by Blogger.