Skip to content

Instantly share code, notes, and snippets.

Created October 15, 2010 20:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/628943 to your computer and use it in GitHub Desktop.
Save anonymous/628943 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
<head>
<title>Titre</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<script type="text/javascript">
var iframe;
window.onload = function() {
iframe = document.getElementById('iframe');
iframe.contentWindow.scrollTo(300,300);
};
</script>
</head>
<body>
<iframe src="http://localhost/page.html" id="iframe" />
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment