Binding a function on document all element having class SearchableCol
jQuery(document).on("click", ".SearchableCol", nwcsClickFunc);
I am trying below two methods to unbind, nothing is working.
jQuery(document).unbind("click", nwcsClickFunc);
jQuery(".SearchableCol").unbind("click");
Need help to unbind an event from document.