• eml-media-uploader.js

    $(document).on('change','input[name^="tax_input"]', function()

    This line can result unexpected JS errors in IE10/11(haven’t tested on older IEs). For example, if
    $('input').trigger('change');
    Then it will give

    Unable to get property ‘nodeType’ of undefined or null reference

    I think this code should be like this:
    $('input[name^="tax_input"]').on('change', function()

    https://wordpress.org/plugins/enhanced-media-library/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Error in IE10 and IE11’ is closed to new replies.