Is there any way to disable a link using CSS?
I have a class called current-page
and want links with this class to be disabled so that no action occurs when they are clicked.
Is there any way to disable a link using CSS?
I have a class called current-page
and want links with this class to be disabled so that no action occurs when they are clicked.
Try this:
CSS can't do that. CSS is for presentation only. Your options are:
href
attribute in your<a>
tags.class
, and remove theirhref
oronclick
attributes accordingly. jQuery would help you with that (NickF showed how to do something similar but better).