Archive

Archive for the ‘Javascripts’ Category

Auto Redirect dengan java script

July 11th, 2005 cachak 2 comments

Untuk mengautoredirect dari domain a ke domainb maka di domaina di index.htmlnya diisi script berikut :


<html><head>
<title>AutoRedirect</title>
<base target="_self">
</base></head>
<body onload="go()">
<script LANGUAGE="JavaScript">
function go(){
var url ="http://domainb.com"
var target="_self"
window.open(url,target)
}
</script>
</body>
</hml>

Categories: Javascripts Tags: