Hi Carols,
At the moment, yes. :)
Ok and that resolve the problem?
--
Atte.
Carlos Becar.
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);
});
});
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.
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()
5 matches
Mail list logo