Friday 15 March 2013

jquery select() problem in IE(8) -


The selection of jquery () is not working in IE, but its work is well in Firefox and Chrome.

What can be the problem with selection () in IE, particulary in IE8?

IDEA 1

one click in your checkbox Try adding the trigger:

  $ (selector_to_checkbox) .click (function () {$ (this) .change ()});  

It is possible that IE is not properly triggering the event of change.

IDEA 2

Clearly blurring the checkbox before calling . Selection

  $ (selector_to_checkbox) .change (function () {$ (this) .blur (); $ (selector_to_textbox). Selection ();});  

No comments:

Post a Comment