Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

unclickable button

/*works on all html elements*/
a {
  display: inline-block;
  pointer-events: none;
}
<a href="http://stackoverflow.com" onclick="alert('clicked on link')"></a>
/*pointer events may target its descendant elements
if those descendants have pointer-events set to some other value.*/
/*demo https://codepen.io/abdelghanymh/pen/eYGeMdR*/
Source by codepen.io #
 
PREVIOUS NEXT
Tagged: #unclickable #button
ADD COMMENT
Topic
Name
3+5 =