[jQuery] Re: [validate] delegate event on selection failed in IE

2009-08-17 Thread sunsuron
Hi Carols, At the moment, yes. :)

[jQuery] Re: [validate] delegate event on selection failed in IE

2009-08-17 Thread Carlos Becar
Ok and that resolve the problem? -- Atte. Carlos Becar.

[jQuery] Re: [validate] delegate event on selection failed in IE

2009-08-17 Thread sunsuron
Hi Carols, Adding * 'works' with few modification but FireFox will trigger the 'change' event twice. I've temporarily decided to use 'fix' below. theForm.delegate('click', '#sel', function(e){ $(this).unbind().change(function() { alert(this.value); }); });

[jQuery] Re: [validate] delegate event on selection failed in IE

2009-08-17 Thread Carlos Becar
you have add "*" in var theForm = $('form:first *'); because Changes are not propagated up through to the form I guess and Just bind to all the possible pieces of the form and look for changes directly there. test and tell me if the solution works for you -- Atte. Carlos Becar.

[jQuery] Re: [validate] delegate event on selection failed in IE

2009-08-17 Thread Carlos Becar
Hi sunsuron, The problem is that IE doesn`t change the method triggers and you bind the method. Here the example with your code in js "delegate.js" ;(function($) { $.yoyoClass = function() { this.construct(); }, $.extend($.yoyoClass.prototype, { construct: function()