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.

In my web i was used lazy load plugin ( http://www.appelsiini.net/projects/lazyload ).

But google+ and facebook share button doesn´t send picture who is loaded with lazy plugin.

<img class="lazy" src="img/grey.gif" data-original="img/example.jpg" width="640" height="480">

This code has been used. Facebook and google+ share button send src (img/grey.gif), but i need send with share button real picture - in data-original (img/example.jpg).

share|improve this question

closed as not a real question by CBroe, RolandoMySQLDBA, John Koerner, ElYusubov, Igy Jan 28 at 0:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

This code has been used. Facebook and google+ share button send src (img/grey.gif), but i need send with share button real picture - in data-original (img/example.jpg).

Then you need to set that image in the Open Graph meta tags of your page, read more about it in the Like Button documentation.

share|improve this answer
yes it is true, but on my website is more images than 1, and next pictures are loading by ajax – Veronika Blahoslavová Jan 27 at 20:58
Facebook bot cannot read JS, so if you have a direct page for the info you are sharing (image and obviously content) then add that page's link to the share button. – ifaour Jan 27 at 21:07

Add Open Graph tag which points to the original image into page head. For example:

<meta property="og:image" content="http://www.example.com/commercials/img/example.jpg">
share|improve this answer

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