Binding a function to a document for all elements that have a SearchableCol class
jQuery(document).on("click", ".SearchableCol", nwcsClickFunc);
I'm trying to use two methods to untie, nothing works.
jQuery(document).unbind("click", nwcsClickFunc);
jQuery(".SearchableCol").unbind("click");
Help is needed to untie the event from the document.
source
share