Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Why do jquery 2.2.4 .on('click') listeners not trigger upon clicking dynamically loaded children of the element specified in the finder?

  • 1 பதிலளி
  • 1 இந்த பிரச்சனை உள்ளது
  • 5 views
  • Last reply by michaelrstewart1

I am using jQuery 2.2.4 to listen for a click on an element within a div. The element within the div is dynamically loaded.

Consider the following div element. (I'm having to remove the starting characters from the tags so the code shows up here)

div id='view_dashboards_pane'>

/div>

Content is loaded into the above div via an ajax call, resulting in this:

div id='view_dashboards_pane'>

    i class="dashboard_user_edit_label">mode_edit</i>

/div>

The below script is present on the initially loaded page and will successfully trigger upon clicking the dynamically loaded element in Chrome and Edge, however the click does not register in Firefox. Looking at the "Events" section for the <i> element in Firebug it appears that the listener is attached, but the click event does not register.

script type='text/javascript'>

    $('#view_dashboards_pane').on('click','.dashboard_user_edit_label',function(){
        console.log('Clicked');
    });

/script>

There are no errors in the console and all other javascript/jQuery continues to function within the browser. How does Firefox handle these events differently, and how would I work around this?

I am using jQuery 2.2.4 to listen for a click on an element within a div. The element within the div is dynamically loaded. Consider the following div element. (I'm having to remove the starting characters from the tags so the code shows up here) div id='view_dashboards_pane'> /div> Content is loaded into the above div via an ajax call, resulting in this: div id='view_dashboards_pane'> i class="dashboard_user_edit_label">mode_edit</i> /div> The below script is present on the initially loaded page and will successfully trigger upon clicking the dynamically loaded <i> element in Chrome and Edge, however the click does not register in Firefox. Looking at the "Events" section for the <i> element in Firebug it appears that the listener is attached, but the click event does not register. script type='text/javascript'> $('#view_dashboards_pane').on('click','.dashboard_user_edit_label',function(){ console.log('Clicked'); }); /script> There are no errors in the console and all other javascript/jQuery continues to function within the browser. How does Firefox handle these events differently, and how would I work around this?

michaelrstewart1 மூலமாக திருத்தப்பட்டது

All Replies (1)

Wow, if I change the tag from "i" to "button" it works, but unfortunately I need to remain "i". What is going on there?

michaelrstewart1 மூலமாக திருத்தப்பட்டது