Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question
Have you found some error log in browser console? – Passerby Dec 23 '12 at 3:01
Yeah i found below text. Thanks. ########################## # The endpoint used to load this resource has been deprecated. # Please update to the current Facebook JavaScript SDK. # developers.facebook.com/docs/reference/javascript ########################## – Saurabh Dec 23 '12 at 3:40

1 Answer

up vote 3 down vote accepted

A few things to consider.

  1. This api is deprecated, which you may be aware of, though functionality is still there.
  2. The a tag with an id of shareMe is replaced with FB's HTML so, the href will not exist.

Inspect the element and you will see that the HTML is not even an a tag anymore.

http://jsfiddle.net/5awey/

share|improve this answer
Please select this as the answer if this is the answer to your problem. Thanks. – Trevor Dec 23 '12 at 15:26
Thanks @Trevor. Just to be curious, how can i select an element using jquery that is generated within iframe through code in question? Let's say how can i select the a tag with class pluginShareButtonLink? – Saurabh Dec 23 '12 at 17:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.