I have a modal popup with several links inside that have the :confirm and :method => :delete options. The problem is I am using stopPropagation to prevent the modal from closing when a user clicks inside the div content area.
event.stopPropagation();
However, this disables any of the javascript that Rails uses for the links that have :remote => true or :confirm or :method.
Does anyone know a workaround to this problem?
Thanks!!