Mr. Goodie2Shoes
Reputable
okay... I just checked out ForumPromotion's "share" button (this one:
), which you can only view in the threads (pretty clever 😉 ), but if you click it, the parent tab is forwarded to the FB Share console (which looks pretty shitty..), so here's a code from me:
Add this before the "head" tag closes:
and this would be the code which the users will be clicking:
P.S. You need to change the IMG source (src) to show your image, OR you can just add a text like "Share this on FB" or something like that...
Cheers! 😀
Add this before the "head" tag closes:
Code:
<script>
function share() {
window.open('http://www.facebook.com/sharer/sharer.php?u=' + encodeURI(location.href) + '&t=' + document.title,'sharer','toolbar=0,status=0,width=626,height=436');
return false;
}
</script>
and this would be the code which the users will be clicking:
Code:
<a href="javascript:share()" target="_blank" title="Share this page on Facebook" onclick="return share();"><img title="Share this page on Facebook" src="http://forumpromotion.net/images/share/facebook.png" alt="Share this page on Facebook"></a>
Cheers! 😀







