Skip to content Skip to sidebar Skip to footer

How To Prevent The Click Event Using CSS?

How to prevent the click event using CSS ? I have created the form page , then i need to prevent the click event using only CSS? I have tried this css property, but not worked.

Solution 1:

You can try the css class:

.noClick {
   pointer-events: none;
}

Post a Comment for "How To Prevent The Click Event Using CSS?"