Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using AJAX to inject elements into the DOM:

$.ajax({
    url: 'foo.html',
    type: 'post',
    data: { foo: "bar"},
    success: function (html) {

        $("#foo").html(html);
        $('[data-toggle="tooltip"]').tooltip();
    }
});

The tooltip does not seem to apply for DOM elements surrounded by button in Firefox (tested on V19.0)

Js fiddle : http://jsfiddle.net/cyberjar09/4nUMu/1/

I noticed when I remove the icon element outside the button element, firefox is working again.

I am able to query the elements from the Firebug console (they exist in the DOM)

$('[data-toggle="tooltip"]')

What's wrong?

I usually see a <div class="tooltip" ...> element appear in the DOM as a sibling for the element on which I want to execute tooltip but this does no happen for the Dynamic elements Im testing with in Firefox

IE 9 and Chrome 25 seem to work just fine

share|improve this question
Can you do a console.log($('[data-toggle="tooltip"]')) before the call to tooltip to see how many elements are appearing at that moment – Arun P Johny Mar 1 at 2:50
As already mentioned in the question, I am able to query the elements from the Firebug console In Other words, I am able to see the elements in the console log and am able to highlight them from the result of the console log – cyberjar09 Mar 1 at 7:28
that is after the said code is executed right, what I asked is to see if there is a delay in updating the dom tree from firefox side. That is why I asked to add the console.log() between the lines $("#foo").html(html); and $('[data-toggle="tooltip"]').tooltip(); – Arun P Johny Mar 1 at 7:33
@ArunPJohny : Yes I am able to see the elements in the console.log(); – cyberjar09 Mar 1 at 7:35
I even did a setTimeout(..., 800) but it does not seem to be a race condition issue – cyberjar09 Mar 1 at 7:43
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.