prototype-ujs
prototype-ujs copied to clipboard
Links created with a data-method or data-remote attribute submit via right click
Although $('link').on('click', function(event) { ... })
only responds to left clicks, document.on('click', '[selector]', function(event, el) { ... })
responds to right click as well, which has the byproduct of causing remote links or links with a method specified to submit when right clicked on.