Facebook Adds Social Networking: Link Sharing
Facebook just added a new feature they’re calling “Link Sharing.” Basically, after installing the following bookmarklet into your taskbar, you can share links on facebook with your friends:
javascript:
var d = document;
var f = 'http://www.facebook.com/share';
var l = d.location;
var e = encodeURIComponent;
var p = '.php?src=bm&v=3&u=' + e(l.href) + '&t=' + e(d.title);
try {
if(!/^(.*\.)?facebook\.[^.]*$/.test(l.host))
throw(0);
share_internal_bookmarklet()
} catch(z){
a = function(){
if(!window.open(f+'r'+p,'sharer', 'toolbar=0, status=0, resizable=0, width=626, height=436'))
l.href=f+p;
};
if(/Firefox/.test(navigator.userAgent)) {
setTimeout(a,0);
} else {
a();
}
}
void(0);
Clicking on this link will popup a Facebook “sharing” window which looks like this:

Once you actually share the media, they appear on your wall, and the walls and link inboxes of the people you choose to share with:

You can read more at the official facebook blog or from TechCrunch’s Facebook Beta Testing Social Bookmarking.
This entry was posted on Saturday, October 28th, 2006 at 9:00 pm and is tagged with testing social bookmarking, networking link, facebook, beta testing, bookmarklet, social networking, useragent, taskbar, encodeuricomponent, new feature, bm, blog. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback.


on August 10th, 2008 at 2:12 am
Cool feature, I will try this out. Thanks