Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<script>
function checkMe() {
var Gm = document.form_gm
if(Gm.myList.options[0].selected == true) {
alert("Please make a selection");
return false;
}
if(Gm.myList.options[1].selected == true) {
alert("Are you sure you want to go to Hotmail?");
window.location = '[URL unfurl="true"]http://www.hotmail.com';[/URL]
return false;
}
}
</script>
<form name="form_gm" onSubmit="return checkMe();">
<select name="myList">
<option value="">Make a choice</option>
<option value="1">Hotmail</option>
<option value="2">Tek-Tips</option>
</select>
<input type="submit" name="Submit" value="Submit">
</form>