Olá, esse código meu simplesmente não funciona, o detalhe é que no site (Shark Zone - Exemplo) funciona certinho, alguma sugestão? Eu já tentei de tudo para fazer um Iframe mover se para o canto inferior direito, através de uma função, mas nenhum êxito! <html>
<head>
<title>Untitled Document</title>
</head>
<body>
<div>
<iframe name="frame" id="frame"
scrolling="no"
src="http://www.sharkzonedesign.com/;
width="300" height="200"></iframe>
<p>
<form>
<input type="button" value="Up" onClick="frame.scrollBy(0,-100)" />
<input type="button" value="Down" onClick="frame.scrollBy(0,100)" />
<input type="button" value="Left" onClick="frame.scrollBy(-100,0)" />
<input type="button" value="right" onClick="frame.scrollBy(100,0)" />
</form>
</p>
</div>
</body>
</html>