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.
window.onload=getSelected;
var s;
function getSelected(){
s=document.formName.selectName.selectedIndex;
}
function checkSelected(){
if(s==document.formName.selectName.selectedIndex){
alert('Select changed');
}
else {
alert('Select did not change');
}
}