Comment to Open in same tab or page
-
Hello @John Curtis !
You may try to change this line in your code:
window.open( this.options[ this.selectedIndex ].value );
to this one:
window.location.assign(this.options[ this.selectedIndex ].value);
-
Thank you @LeonidS , that worked great.
Would you by chance have a suggestion on how to place the selection box be to the right of "Choose Station by Genre" instead of below?
-