"Disabling a link". This phrase makes me ill, but here's a great article to help if you must do this. Another option is to just remove the link. scottohara.me/blog/2021/05/28/… by @scottohara #links #webdesign #webdev
Disabling a link | scottohara.me
With HTML alone there is no way to disable a hyperlink (an element), and have it be both exposed as a “link” and as “disabled”. Now, setting ...www.scottohara.me
akazzop
in reply to DennisL • • •i went the css route something like
a[disabled] { pointer-events: none; }
we ve been asked to have a link disabled for a few seconds to throttle users, kinda work.