as the title says I\'m trying to disable OnClick for specific
You can unbind click event into click event:
unbind
click
$("#test").click(function(){ $( "#test" ).unbind( "click"); alert('Jquery/Javascript Event'); });
Try JsFiddle