Friday, February 8, 2008

Javascript 4

This function is used to goto another page when option is selected from drop down menu.

function goToPage2()
{
PageIndex2=document.form2.select2.selectedIndex
if (document.form2.select2.options[PageIndex2].value != "none")
{
window.location = document.form2.select2.options[PageIndex2].value
}
}

Please view here..
http://www.rit.edu/~gxs8938/rit737/finalindex.html

No comments: