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.

having a problem with my pinterest button..

code is as follows:

var pinit = '<a href="http://pinterest.com/pin/create/button/?url=' + window.location + '&media=' + $(this).attr('src') + '&description=test" class="pin-it-button" count-layout="none"><img border="0" src="//assets.pinterest.com/images/PinExt.png" title="Pin It" /></a>'

and renders to this URL:

http://pinterest.com/pin/create/button/?url=http://withoutprejudice.limebuild.net/journal/?p=37&media=http://withoutprejudice.limebuild.net/journal/wp-content/uploads/2012/12/wpim1.png&description=test

But when you actually 'pin it' it just refreshes as you see, and I cannot for the life of me figure out why..

Thanks!

share|improve this question
have you tried encoding your url data? like ...?url='+ encodeURIComponent(window.location)+'&... and the rest of your url data? – Prisoner Dec 11 '12 at 10:12
Yeah, no luck with that unfortunately – roly Dec 11 '12 at 11:49

1 Answer

So the solution?

Don't try and pin images that are stores locally ahaha.

<<< Idiot.

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.