Prevent onclick action with jQuery
jQuery is not going to solve this one OOTB. It can help, but none of stopPropagation, stopImmediatePropagation, preventDefault, return false will work if you simply attach them to the element. You need to override the element’s click handler. However you state in your question “without removing onclick actions”. So you need to override the default … Read more