Set Hyperlink Using Jquery
Just set any default link here:
<a href="http://www.google.com" target="_blank">Click Here</a>
Now write jquery for setting the dynamic link:
$(document).ready(function() {
$("a").prop("href", "http://stcodewriter.blogspot.in/");
});
Comments
Post a Comment