i thought this was going to be simple but i don't know why is not working...
When you make facebook share button and you want some special image on the fb share, you put something like this in the <head> of the page:
<link rel="image_src" href="image.jpg" />
Facebook will then grab this image and put it in the post.
but i create this image after the page is loaded. so i wanted to put this piece of code into the after the page is loaded. I tried with this code:
$('head').append('<link rel="image_src" href="image.jpg" />');
but for some reason it doesnt work?
so how do i do that - append this piece of code into page after the page is loaded AND that facebook share button will grab this image?
thank you, Peter