With the latest jqModal release (+r14), I'm having an issue with the new feature of live links. Whenever the live-loaded trigger link is clicked on, it redirects to the HREF instead ...
jqModal - Problem executing Multiple Triggers in Using jQuery 9 months ago Hello, jQuery Forum; I hope I'm in the right place I'm trying to use a jqModal Pop-Up to show product images from a list of thumbnail images on a main page, having difficulty getting multiple triggers to work. The first instance works fine, but ...
I don't believe there's a removeTrigger sort of function for jqModal.The only thing I can think of to do would be to bind a click event tothe element you want to trigger the modal instead of using thejqmAddTrigger() method.So instead of:$('#data-info-div').jqmAddTrigger('a.data-info-trigger');You could use:$('a.data-info-trigger').click( function() { $('#data-info-div').jqmShow();});That would give you a little more control over what happens when youclick the element. Also, ...