jQuery
HTML
CSS
JavaScript
PHP
SQL
WordPress
jQuery Snippets

Code Snippet

There are times where you may want/need to disable a text link or set of links on your sites temporarily using jQuery.

				
					$('.my_link').click(function(e) {
    e.preventDefault();
});
				
			

You could also have it do other things when clicked, such as letting the user know that it’s disabled or that it’s coming soon.

				
					$('.my_link').click(function(e) {
    e.preventDefault();
    alert('This link is temporarily unavailable.');
});
				
			

Another way to do this is to use jQuery to add a class of .disabled to the HTML link. And then have some CSS that disables the link. Though this seems like a lot more effort compared to the above. But what it does is keeps the link from responding to cursor or touch events

				
					$('.my_link').addClass('disabled');
				
			
				
					.disabled {
    pointer-events: none;
    text-decoration: line-through;
}
				
			
				
					<a class="my_link disabled" href="my-link.html">My Link</a>
				
			

Example

My Disabled Link

We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.

jQuery
HTML
CSS
JavaScript
PHP
SQL
WordPress

Why 1SMARTchicken?

This site was built and is maintained to benefit my autistic son.
See More →

My Son's Name is Johnny

He was diagnosed as autistic quite late, at age four...
His story

Buy Me a Coffee

Thanks for your support!

Feedback

If you see an error on the page or the code itself is incorrect or incomplete, or just plain wrong, please let us know. We’re always learning. NOTE: we do not sell your information and will not send you spam emails.