Click here to Skip to main content
15,902,276 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Actually http:// submitting twice Pin
Om Prakash Pant31-May-04 22:12
Om Prakash Pant31-May-04 22:12 
GeneralUse Cases Pin
deeps2620-May-04 18:58
deeps2620-May-04 18:58 
GeneralRe: Use Cases Pin
Michael Flanakin24-May-04 11:57
Michael Flanakin24-May-04 11:57 
GeneralRe: Use Cases Pin
deeps2626-May-04 21:03
deeps2626-May-04 21:03 
Generaljavascript error... Pin
l a u r e n20-May-04 10:59
l a u r e n20-May-04 10:59 
GeneralRe: javascript error... Pin
Andrew Quinn AUS20-May-04 11:27
Andrew Quinn AUS20-May-04 11:27 
GeneralRe: javascript error... Pin
l a u r e n20-May-04 11:28
l a u r e n20-May-04 11:28 
GeneralRe: javascript error... Pin
Bjoern Graf23-May-04 14:00
Bjoern Graf23-May-04 14:00 
Never ever submit a form onchange of a select!
Reasons:

  1. the user is not able to select options with the keyboard
  2. when the user uses the mouse wheel and the select has focus the form is again submitted by accident
  3. the form will not be submitted if the user has JS disabled


Having that said here's another programatically correct approach:
<script type="text/javascript">
function doSubmit(frm) {
    frm.submit();
}
</script>
...
<select onchange="doSubmit(this.form)">

GeneralRecurring Error message with BttlexForum Pin
Thermonuclear Penguin20-May-04 7:39
Thermonuclear Penguin20-May-04 7:39 
GeneralRe: Recurring Error message with BttlexForum Pin
Torsten Mauz1-Jun-04 11:21
Torsten Mauz1-Jun-04 11:21 
QuestionWeb Anaylsis Tools? Pin
David Flores20-May-04 5:03
David Flores20-May-04 5:03 
AnswerRe: Web Anaylsis Tools? Pin
ian mariano20-May-04 9:47
ian mariano20-May-04 9:47 
GeneralRe: Web Anaylsis Tools? Pin
David Flores21-May-04 4:07
David Flores21-May-04 4:07 
GeneralRe: Web Anaylsis Tools? Pin
alex.barylski23-May-04 13:06
alex.barylski23-May-04 13:06 
AnswerRe: Web Anaylsis Tools? Pin
Jan R Hansen21-May-04 12:02
Jan R Hansen21-May-04 12:02 
GeneralRe: Web Anaylsis Tools? Pin
l a u r e n22-May-04 8:21
l a u r e n22-May-04 8:21 
QuestionWhat HTTP headers do I need to add to download CAB files? Pin
Terry O'Nolley20-May-04 4:38
Terry O'Nolley20-May-04 4:38 
AnswerRe: What HTTP headers do I need to add to download CAB files? Pin
Andrew Quinn AUS20-May-04 4:42
Andrew Quinn AUS20-May-04 4:42 
GeneralRe: What HTTP headers do I need to add to download CAB files? Pin
Terry O'Nolley20-May-04 7:48
Terry O'Nolley20-May-04 7:48 
Generalamazon Upload need help... Pin
Sumit Kapoor19-May-04 19:53
Sumit Kapoor19-May-04 19:53 
Generalword document to html Pin
Xun Ding19-May-04 8:16
Xun Ding19-May-04 8:16 
GeneralRe: word document to html Pin
mystro_AKA_kokie19-May-04 9:47
mystro_AKA_kokie19-May-04 9:47 
GeneralRe: word document to html Pin
Xun Ding19-May-04 10:58
Xun Ding19-May-04 10:58 
GeneralRe: word document to html Pin
mystro_AKA_kokie19-May-04 11:04
mystro_AKA_kokie19-May-04 11:04 
GeneralRe: word document to html Pin
alex.barylski23-May-04 13:07
alex.barylski23-May-04 13:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.