Skip to content

Instantly share code, notes, and snippets.

@superfine
Last active October 11, 2015 18:16
Show Gist options
  • Save superfine/d2ced20755fc213738cb to your computer and use it in GitHub Desktop.
Save superfine/d2ced20755fc213738cb to your computer and use it in GitHub Desktop.
disables interaction via css class on clickable elements
// disables interaction via css class on clickable elements
$(document).ready(function() {
$('.disabled').click(function(){
return false;
});
});
/* possible css */
.disabled {
cursor: not-allowed;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment