I was reading
Facebook for Websites [developers.facebook.com] and had a couple of questions.
Is the "like" feature for the entire website or for each page (post)? I saw this code:
<html>
<head>
<title>My Great Web page</title>
</head>
<body>
<iframe src="http://www.facebook.com/plugins/like.php?href=YOUR_URL"
scrolling="no" frameborder="0"
style="border:none; width:450px; height:80px"><iframe>
</body>
</html>
that they recommend. With the title there, it seems it might be for the website and not for each specific page?
There also seemed to be a few different options to implement this feature. Any recommendations on which one to use / better?
Thanks!