I want to attach a event to dynamically created element class.So i used live function but it was not triggered. So checked live function reference ,there i red below notes

As of jQuery 1.7, the .live() method is deprecated. Use .on() to attach event handlers. Users of older versions of jQuery should use .delegate() in preference to .live().

so decide to use on function,But it still not working.The text field is already attached with jquery ui datpicker.On another element select i disabled that field.

jQuery("#from").attr('disabled','disabled')
.removeClass('date_picker_bg')
.removeClass('hasDatepicker')
.addClass('date_picker_disabled');

after disabled if i click i want to show alert or tooltip.so i tried this,but not working

jQuery(".date_picker_disabled").on("click", function(event){
          alert('hi');
  });

What may be the problem

I am using jquery 1.7.1 ( jquery-1.7.1.min.js)

link|improve this question

77% accept rate
have you got a small jsfiddle to explain your problem a bit more – naveen Dec 23 '11 at 10:37
@Purmou:even live not working for me – gowri Dec 23 '11 at 10:38
feedback

4 Answers

up vote 5 down vote accepted

The problem is that jQuery(".date_picker_disabled") finds elements with that class and binds to them. If elements don't have the class at the time the binding is made, the events will not be handled.

The on function allows you to get round this by handling them on another element when the event "bubbles up to" a parent element. In this instance, we could say the body element – there may be a more specific common parent you could choose.

jQuery(document.body).on('click', '.date_picker_disabled', function(event) {
    alert('hi');
});

The event handler is now bound to the document.body element. All clicks that happen anywhere in the body are tested to see if they originated from an element matching the selector. If so, the handler is fired.

This is explained on the documentation for the on function. It is the same behaviour as was present in previous versions of jQuery with live and delegate functions.


Having taken another look at your code, you have disabled="disabled" set on your input element. click events are not fired on disabled elements.

link|improve this answer
I tried that too.but not selecting anything – gowri Dec 23 '11 at 10:41
@gowri See my edit. – lonesomeday Dec 23 '11 at 10:44
:Valid edit,Do you have any idea to this.can i trigger other event on disabled element.and one more doubt jQuery('document.body') is right or jQuery(document.body) – gowri Dec 23 '11 at 10:46
:+1 for your edit section. – gowri Dec 23 '11 at 10:57
@gowri presumably you could put the disabled input tag in a div and bind the click event to the div. Or you could make it readonly and style it the same as disabled (I am not sure if that stops the click event, but I would guess that it wouldn't) – Andrew Jackman Dec 23 '11 at 11:19
show 1 more comment
feedback

This is tricky.

When your code runs, your element does not have .date_picker_disabled class so your jQuery(".date_picker_disabled") returns nothing and .on() is not called.

Apply .on() on the outer element and use the selector parameter:

// you can also do $(document).on()
$(<outer element>).on('click', '.date_picker_disabled', function() {
    // do something
});

This will delegate the event to the <outer element>. The handler will only be executed if an element with class .date_picker_disabled has been clicked (second param).

link|improve this answer
feedback

From the documentation of .live():

Rewriting the .live() method in terms of its successors is straightforward; these are templates for equivalent calls for all three event attachment methods:

$(selector).live(events, data, handler);                // jQuery 1.3+
$(document).delegate(selector, events, data, handler);  // jQuery 1.4.3+ 
$(document).on(events, selector, data, handler);        // jQuery 1.7+

So in your case, you would do:

$(document).on('click', '.date_picker_disabled' function(event){
    alert('hi');
});
link|improve this answer
This helps, but it took me a while to actually see the main point. You should emphasize it. – Purmou Dec 23 '11 at 10:38
feedback

Maybe you should do:

jQuery("body").on("click",".date_picker_disabled", function(event){
          alert('hi');
  });

in this way you attach the event handler to the bosy and specify to fire that event only when that selector ".date_picker_disabled" is matched.
BTW this is exactly how live() worked

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.