as the title says I\'m trying to disable OnClick for specific
Try this?
$('#test').unbind('click')
OR
$( "#test" ).bind( "click", handler ); $( "#test" ).unbind( "click", handler );
Try this
$( "#test" ).on("click", function () { }); $("#test").off("click");