Click here to Skip to main content
15,884,925 members
Home / Discussions / JavaScript
   

JavaScript

 
QuestionHow can I submit form without the querystring Pin
jsampathkumar10-Apr-13 7:22
professionaljsampathkumar10-Apr-13 7:22 
AnswerRe: How can I submit form without the querystring Pin
Graham Breach10-Apr-13 7:55
Graham Breach10-Apr-13 7:55 
AnswerRe: How can I submit form without the querystring Pin
Sandeep Mewara10-Apr-13 8:16
mveSandeep Mewara10-Apr-13 8:16 
QuestionIE(10) has problems with SELECT.onchange Pin
captnmac8-Apr-13 7:22
captnmac8-Apr-13 7:22 
AnswerRe: IE(10) has problems with SELECT.onchange Pin
enhzflep10-Apr-13 9:19
enhzflep10-Apr-13 9:19 
GeneralRe: IE(10) has problems with SELECT.onchange Pin
captnmac11-Apr-13 1:54
captnmac11-Apr-13 1:54 
GeneralRe: IE(10) has problems with SELECT.onchange Pin
enhzflep11-Apr-13 2:25
enhzflep11-Apr-13 2:25 
AnswerRe: IE(10) has problems with SELECT.onchange Pin
Graham Breach11-Apr-13 2:56
Graham Breach11-Apr-13 2:56 
Looks like a weird browser bug to me. I've had a play with your script and found an ugly workaround by blurring the select box in the onchange handler:
JavaScript
document.forms[0].sel.onchange = function() {
  var opt = this.options[this.selectedIndex];
  this.form.debugga.value += "[click:"+opt.text+"] ";
  opt.text += '#';
  this.blur();
}

Questionhow can save a file through javascript Pin
vimal Tyagi Zindagi3-Apr-13 21:18
vimal Tyagi Zindagi3-Apr-13 21:18 
AnswerRe: how can save a file through javascript Pin
Sandeep Mewara3-Apr-13 23:30
mveSandeep Mewara3-Apr-13 23:30 
QuestionUsing a javascript timer in a asp User Control Pin
Steve Holdorf1-Apr-13 11:09
Steve Holdorf1-Apr-13 11:09 
AnswerRe: Using a javascript timer in a asp User Control Pin
Steve Holdorf2-Apr-13 0:46
Steve Holdorf2-Apr-13 0:46 
AnswerRe: Using a javascript timer in a asp User Control Pin
Steve Holdorf2-Apr-13 1:46
Steve Holdorf2-Apr-13 1:46 
Questionvalidating candian postal codes Pin
jkirkerx31-Mar-13 12:12
professionaljkirkerx31-Mar-13 12:12 
AnswerRe: validating candian postal codes [solved] Pin
jkirkerx1-Apr-13 7:20
professionaljkirkerx1-Apr-13 7:20 
QuestionTime and date Pin
Tichaona J31-Mar-13 4:15
Tichaona J31-Mar-13 4:15 
AnswerRe: Time and date Pin
dusty_dex31-Mar-13 4:41
dusty_dex31-Mar-13 4:41 
QuestionJquery - Setting focus on Canvas Pin
Simon Lee Shugar29-Mar-13 2:54
Simon Lee Shugar29-Mar-13 2:54 
AnswerRe: Jquery - Setting focus on Canvas Pin
Jasmine250129-Mar-13 6:55
Jasmine250129-Mar-13 6:55 
GeneralRe: Jquery - Setting focus on Canvas Pin
Simon Lee Shugar3-Apr-13 12:51
Simon Lee Shugar3-Apr-13 12:51 
AnswerRe: Jquery - Setting focus on Canvas Pin
jkirkerx30-Mar-13 18:57
professionaljkirkerx30-Mar-13 18:57 
AnswerRe: Jquery - Setting focus on Canvas Pin
Dennis E White2-Apr-13 5:57
professionalDennis E White2-Apr-13 5:57 
GeneralRe: Jquery - Setting focus on Canvas Pin
jkirkerx2-Apr-13 6:28
professionaljkirkerx2-Apr-13 6:28 
GeneralRe: Jquery - Setting focus on Canvas Pin
Dennis E White2-Apr-13 6:35
professionalDennis E White2-Apr-13 6:35 
GeneralRe: Jquery - Setting focus on Canvas Pin
jkirkerx2-Apr-13 6:38
professionaljkirkerx2-Apr-13 6:38 

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.