Welcome to JavaScript Finder
Javascript Popups
A Simple Popup
JavaScript : Popups
<script language="JavaScript">
<!--
function popme(url) {
newwindow=window.open(url,'name','height=200,width=150');
if (window.focus) {newwindow.focus()}
return false;
}
-->
</script>
<a href="index.html" onclick="return popme('index.html')" >Link to Index</a>
Try it out. It will Popup JavaScript Finder home page.
Link to Index
Javascript Redirect
A Redirect can be use as a Navigation tool or if your web site has moved a Redirect can get your users back to the new web site.
JavaScript : Redirect
<html>
<head>
<script type="text/javascript">
<!--
function MoveOn() {
window.location="http://home.ntelos.net/~credifer/code/index.html";
}
//-->
</script>
</head>
<body>
<input type="button" onclick="MoveOn()" value="MoveOn">
</body>
</html>
Try it out. You will be send to the JavaScript Finder home page.