as the title says I\'m trying to disable OnClick for specific
You can add off("click");
off("click");
Fiddle
$(function () { $("#test").click(function(){alert('test');}); $("#test").off('click'); });
this code will demonstrate removing a previously added click event.