<!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>
Categories: Php Mysql Ajax Jquery JavaScript Mysql
0 Comments