Click here to Skip to main content
15,891,976 members
Home / Discussions / JavaScript
   

JavaScript

 
GeneralRe: Question of a dusy_dex Pin
dusty_dex16-Apr-13 10:53
dusty_dex16-Apr-13 10:53 
GeneralRe: Question of a dusy_dex Pin
Hakan Bulut16-Apr-13 21:18
Hakan Bulut16-Apr-13 21:18 
QuestionJavaScript controls with date and time (format: dd / mm / yyyy hh: mm: ss) Thank you, and provide the connection site Pin
Jandren10-Apr-13 16:59
Jandren10-Apr-13 16:59 
AnswerRe: JavaScript controls with date and time (format: dd / mm / yyyy hh: mm: ss) Thank you, and provide the connection site Pin
enhzflep10-Apr-13 18:36
enhzflep10-Apr-13 18:36 
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 
I see that IE(10), after changing an OPTION's .text property from within the OnChange event handler, the SELECT element becomes unclickable (like disabled) for the user.

HTML fragment to reproduce the behavior:
JavaScript
<form><select size=3 id=sel>
	<option>one
	<option>two
	<option>three
</select>
<textarea name=debugga cols=40 rows=10>
</textarea></form>

<script>
	document.forms[0].sel.onchange=function ()
	{	var opt = this.options[this.selectedIndex];
		this.form.debugga.value += "[click:"+opt.text+"] ";
		opt.text += '#';

		//alert('now it works');
	}
</script>


When using onclick instead of onchange, the problem does not appear.
When opening an alert box after the .text change (uncomment line 'now it works'), the problem does not occur either.

Has anyone an idea how to do a workaround or if Microsoft has already commented on this bug? I cannot find a single article about this issue. Thanks in advance!
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 
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 

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.