-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommonNav.js
More file actions
17 lines (17 loc) · 854 Bytes
/
CommonNav.js
File metadata and controls
17 lines (17 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function menu_goto( menuform )
{
selecteditem = menuform.url.selectedIndex ;
newurl = menuform.url.options[ selecteditem ].value ;
if (newurl.length != 0) {
top.top.location.href = newurl ;
}
}
document.writeln( '<form action="chgoto" method="get" target="_top">' );
document.writeln( ' <select name="url" onchange="menu_goto(this.form)">' );
document.writeln( ' <option value="#">Where do you want to go</option>' );
document.writeln( ' <option value="http://automationsandbox.gregpaskal.com">Home</option>' );
document.writeln( ' <option value="http://www.google.com">Google</option>' );
document.writeln( ' <option value="http://www.MissionWares.com">MissionWares</option>' );
document.writeln( ' <option value="http://www.DaveRamsey.com">Dave Ramsey</option>' );
document.writeln( ' </select>' );
document.writeln( '</form>' );