i want to add facebook like button to point to current page automatic , iam using onaracde script el7l.com any idea ?
<fb:like>Your text</fb:like> refer this page for more http://developers.facebook.com/docs/reference/plugins/like
easiest way would be to use the iframe version on your site. it will pull the name, description, thumb image from your header. <iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2FYOUR=DOMAIN=HERE.COM&layout=button_count&show_faces=false&width=450&action=like&font=verdana&colorscheme=light&height=35" style="border: medium none; overflow: hidden; width: 450px; height: 35px;" allowtransparency="true" frameborder="0" scrolling="no"></iframe> HTML: use this information in the header of your page <meta property="og:title" content="TITLE-OF-PAGE"/> <meta property="og:url" content="YOUR-SITE-URL"/> <meta property="og:image" content="LINK-TO-IMAGE-ON-YOUR-SITE-50x50"/> <meta property="og:description" content="DESCRIPTION-OF-CONTENT"/> <meta property="og:site_name" content="SITE-NAME"/> HTML: Details more on facebook at: http://developers.facebook.com/docs/reference/plugins/like will generate your iframe code for you. Hope this helps.