Javascript
From Richard's Wiki
- Generate and Consume DOM Events
- Resizable Div
- Disable Back button:
<script type="text/javascript" language="javascript">
function GoBack()
{
window.history.forward();
}
</script>
//Call this JavaScript function on the onload event of body tag.
<body onload="GoBack();">