I'm using infinite scroll on tumblr, and inside the elements i load at runtime i have a facebook like button. Everything works the first time i call the script, however, it seems as if i can't load it more than once, and therefore the elements created when scrolling wont have a working facebook button due to not existing when the script was loaded. Nothing happens if i do this after more content is loaded.
Looking at the script ( http://connect.facebook.net/en_GB/all.js ), it looks like the script will only run once per page, is there any way around this?
My code:
var js, fjs = d.getElementsByTagName(s)[0];
js = d.createElement(s); js.id = id;
js.async=true;
js.src = "http://connect.facebook.net/en_GB/all.js#xfbml=1&appId=484534104905547";
fjs.parentNode.insertBefore(js, fjs);