Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an iframe with a like button from facebook and it's a bit small i want to scroll the iframe from the left for 15px;

Here is my code:

<iframe id='likebutton' frameBorder='0' allowTransparency='true' src='http://www.facebook.com/widgets/like.php?href="www.facebook.com/makestream"&amp;layout=standard&amp;show_faces=true&amp;width=53&amp;action=like&amp;colorscheme=light&amp;height=80' style='position:absolute;width:26px;height:23px;overflow:hidden;border:0;'></iframe>

is there anyway to do this with javascript ?

share|improve this question

2 Answers

With javascript you can change CSS with code like this:

document.getElementById("likebutton").style.marginLeft="15px";

or with jQuery:

$("#likebutton").css("margin-left","15px");
share|improve this answer
thank you a lot but I want to scrole the inner content... – user1898399 Feb 3 at 20:58
Ok sorry i didnt understand your question here is a code for scrolling an iframe: var myIframe = document.getElementById('likebutton'); myIframe.onload = function () { myIframe.contentWindow.scrollTo(xcoord,ycoord); } – Vuk Vasić Feb 3 at 21:02
Here is an example: jsbin.com/ipujo/1/edit – Vuk Vasić Feb 3 at 21:03
thank you Vuk but it does not work with facebook iframe – user1898399 Feb 4 at 18:46

Here is a code for scrolling in iframe:

document.getElementById('likebutton'); 
myIframe.onload = function () { 
myIframe.contentWindow.scrollTo(xcoord,ycoord); 
} 

Live example: http://jsbin.com/ipujo/1/edit

share|improve this answer
thank you for that i did search in google and sow that example but it doesn not work with facebook like button – user1898399 Feb 4 at 18:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.