views:

19

answers:

1

http://pastebin.com/KejQT7XQ

i am trying to bind current url of my page to this html how can i do that

A: 

You may want to try to create your iframe dynamically:

<html>
 <head>
  <script type="text/javascript">
   function insertFbButton() {
    f = document.createElement("IFRAME");
    f.setAttribute(
     "src",
     "http://www.facebook.com/plugins/like.php?"
     + window.location.href
     + "&amp;layout=button_count&amp;show_faces=true&amp;width=450"
     + "&amp;action=like&amp;font=arial&amp;colorscheme=light&amp;height=21"
    );
    f.style.width = 450+"px";
    f.style.height = 210+"px";
    document.body.appendChild(f);
   }
  </script>
 </head>
 <body>
  <p>Content</p>
  <script>insertFbButton();</script>
  <p>Content</p>
 </body>
</html>
Arnaud Leymet