• Hi,

    In the source code of PrestaShop, prestashop/themes/default-bootstrap/js/global.js:382 has:

    $(document).on('click', function(e){
    		e.stopPropagation();
                    ...
     });
    

    This prevents listening to all click events on the document, since stopPropagation prevents the event from reaching other attached event listeners.

  • The topic ‘Click events swallowed and incompatibility with other plugins’ is closed to new replies.