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.

Below is a Javascript to add a Twitter sharing button to a gallery lightbox script. The problem is that if the button gets clicked the Twitter text shows "document.title =(my_titles[set_position]);" instead of the actually document title. How to fix that?

social_tools: '<div class="twitter"><a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.example.com" data-text="document.title =(my_titles[set_position]);" data-count="none">Tweet</a></div>' 
        }, my_settings);

Thanks. Uli

share|improve this question
1  
Where is the rest of the code? – danwellman Feb 24 '12 at 15:05

2 Answers

up vote 2 down vote accepted

You are writing document.title inside a string.

'<div class="twitter">
    <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.example.com"
    data-text="' + document.title + '=(my_titles[set_position]);" data-count="none">Tweet</a>
</div>'
share|improve this answer
that's still not correct, it'll print "foo =my_titles[set_position]);" as the title, where foo is document.title. – Zeus Feb 24 '12 at 15:07
Yes. But I thought that's what he wanted to print. Otherwise he can just write document.title as data-text – Pulkit Goyal Feb 24 '12 at 15:09
why would he want to tweet the literal string "=(my_titles[set_position])" ? – Zeus Feb 24 '12 at 15:11
Why would he write that in data-text then? – Pulkit Goyal Feb 24 '12 at 15:12
I guess since he has left out most of his other code, its difficult to decide what he wants – Pulkit Goyal Feb 24 '12 at 15:12
social_tools: '<div class="twitter"><a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.example.com" data-text="' + document.title + '" data-count="none">Tweet</a></div>' 
    }, my_settings);

Apparantly the script uses the text from the data-text attribute to find the text to display. So you need to input that before you generate the div. If you want anything other than the current document's title, change the document.title to what you want.

share|improve this answer

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.