How can I completely delete the $(selector).click() event?
I created option buttons and I would like to stop the click event so that the user won’t be able to change the option already selected.
How to complete the overriding of the click (or any other) event on jquery?
Try jQuery unbind
This will unbind click event from element with id
foo.As @notzippy mentioned disabling button will be a better idea.