<!DOCTYPE html>
<html>
<head>
    <title>Jquery Test</title>
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
    <script src="//cdn.jsdelivr.net/jquery.color-animation/1/mainfile"></script>
    <script>
        $(function(){
            var url = $("#w3s").attr("href");
            $("#btn1").click(function(){
               $(location).attr("href", url);
            })
        })
    </script>
</head>

<body>

<button id="btn1">Show Attribute</button>
<a href="http://www.w3schools.com" id="w3s">W3Schools.com</a>
</body>
</html>


0 Comments

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *