I have an example of old facebook share button where i want to change href attribute of link tag. I used below piece of code but unable to change its href value. Can anyone suggest why it's not working?
<a id="shareMe" name="fb_share" type="button" href="http://www.facebook.com/sharer.php">Share Me</a>
<script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
<script type="text/javascript">
document.getElementById("shareMe").href="javascript:alert('hi');";
</script>