Skip to content

Instantly share code, notes, and snippets.

@asjustas
Created September 13, 2013 08:32
Show Gist options
  • Save asjustas/6548088 to your computer and use it in GitHub Desktop.
Save asjustas/6548088 to your computer and use it in GitHub Desktop.
overwrite onclick
$('.btn-group a').each(function(){
$(this).data('onclick', this.onclick);
this.onclick = function(event) {
return false;
//$(this).data('onclick').call(this, event || window.event);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment