blev Posted April 18, 2006 Share Posted April 18, 2006 Can anyone point me in the way of a good tutorial or example code concerning drop down lists that change when you select an option, instead of selecting an option and then clicking submithere's an example of this[a href=\"http://www.soccerstats.com/\" target=\"_blank\"]http://www.soccerstats.com/[/a] in the top left hand corner there is a drop down box that says select league Quote Link to comment Share on other sites More sharing options...
Orio Posted April 18, 2006 Share Posted April 18, 2006 This is JavaScript, not PHP.If you will look in the source code, you will find these lines:[code]<select name="countryLeague" onChange="location.href=this.options[this.selectedIndex].value"> <option value="http://www.soccerstats.com">Select league</option> <option value="http://www.soccerstats.com/latest.asp?league=england">England</option>[/code]And so on...Learn Javascript to do this (the onChange event and functions that redirect the browser).Orio. Quote Link to comment Share on other sites More sharing options...
blev Posted April 18, 2006 Author Share Posted April 18, 2006 thanks alot Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.