Hi everyone - been reading the forum for some time and have learned so much.
I have a question about drop down menus I am trying to implement on a new hockey website. Basically, I am using the html below. Everything is fine, except with this code, every time an item is selected, it opens in a new window.
How can I alter this code so that selections DO NOT open a new window, and instead just direct readers straight to the desired link?
<select name="menu" onchange="window.open(this.options[this.selectedIndex].value,'_blank')"><option> Basic Stats</option><option value="http://wildwood365.blogspot.com">Games</option><option value="http://wildwood365.blogspot.com">Goals</option><option value="http://wildwood365.blogspot.com">Assists</option><option value="http://wildwood365.blogspot.com">Points</option></select>