Well, I know that there are other questions related to mine, but not one of them that I read answered my question.
I have a select tag with some parameters attached to the change event, but when the user presses the select button and then presses up / down, the change event does not fire in IE. It runs in Firefox and I have not tested Chrome.
So, I think, I would like to know if there is an easy solution for this, I would just like to make
$("#selector").change(function () {
The workaround for me right now is this:
$("#selector").bind('change keyup',function () {
I think I could create a plugin like this:
$.fn.myChange = function (fcn) { return this.bind('change keyup',fcn);}
, jquery (), , , .
, . ?
UPDATE
bug jquery, , .
, . , , /. , IE , FF Chrome .