Javascript

Open a Url onload of a Website or Pagee


You can able to load a webpage while accessing a particular Website using Javascript, see below for code.
<script>
function openWindow()
{
window.open(‘http://www.google.com‘,’a’,’height=300,width=600′);
}
</script>
<body onload=”openWindow();”>
</body>