How can I (if at all) load a new page when an html's selector changes if javascript is disabled in the browser.
Can it be done?
|
How can I (if at all) load a new page when an html's selector changes if javascript is disabled in the browser. Can it be done? |
|||||||||||||
|
|
I guess you mean the html select box having some page titles displayed and as soon as the user selects one of them the new page showes up. This is not possible with out javascript - the only thing you could do is to add a submit button.
This button would only be displayed if javascript is not activated. |
|||
|
No, you cannot reload a page when a |
|||
|
|
|
Without a scripting language (that would be JavaScript if you want to be cross-browser), most form elements are "dumb", they hold their state and display user feedback. The good old Web 1.0 way... :-) |
|||
|
|
|
You can't. With HTML only, changing the selected option makes the value of that option to be sent to the server upon submit (either via the Enter key or a submit/button element). You can eventually set up the receiving script to send back a HTTP Redirect based according to the selected option. You shouldn't. This kind of navigation widget implies the use of a mouse: somebody using the keyboard to navigate the page cannot even select the second option at all (as soon as the down arrow is pressed once the |
|||
|
|