I'd like to know if is there a way to have a list of the default_event_actions for a particular element that 'event.preventDefault()' has been applied on and tell the script what event or action to prevent or not...
something like:
$(element).on('click', function(e){
e.preventDefault() //this will prevent all
//...is there a way of preventing specifically or particularly... 
}) 
Is it possible?
 
     
     
     
    