Skip to content

Instantly share code, notes, and snippets.

@omarkdev
Created December 1, 2016 13:12
Show Gist options
  • Save omarkdev/4b4dc88ed0a9bd8630704754082c1b89 to your computer and use it in GitHub Desktop.
Save omarkdev/4b4dc88ed0a9bd8630704754082c1b89 to your computer and use it in GitHub Desktop.
Input not clickable with css and jQuery
.inpt-no-clickable {
pointer-events: none;
}
$(document).on('focus', '.inpt-no-clickable', function(event) {
var $input = $(this);
$input.blur();
event.preventDefault();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment