Test Page: http://www.eojmarket.com/index.php?pag=26
Code below:
<script language="JavaScript">
function function1(){
window.scrollTo(0,265);
}
</script>
<input type="button" value="Go" onClick="function1();">
Question: Is it possible to get rid of the button and have it scroll to 0,265 on page load ?
Comment: <body onload="function1();"> doesn't appear to work.