Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Created May 11, 2014 20:59
Show Gist options
  • Save wrumsby/e04b4fe572d0158b0ed3 to your computer and use it in GitHub Desktop.
Save wrumsby/e04b4fe572d0158b0ed3 to your computer and use it in GitHub Desktop.
pointer-events: none;
/**
* pointer-events: none;
* see http://caniuse.com/#feat=pointer-events
*/
body {
font-family: sans-serif;
}
.link_disabled {
pointer-events: none;
text-decoration: none;
color: #999;
}
<!-- content to be placed inside <body>…</body> -->
<a href="#" onclick="alert('active'); return false">Active</a>
<a href="#" onclick="alert('disabled'); return false" class="link_disabled">Disabled</a>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment