JSFiddle - React, Tailwind, and code Playground

by Alexander

HTML

<a href="http://majorov.su">Link</a>

CSS

.orange {
    background: #ffa500;
}

JavaScript

$('a').click(function(event){
	event.preventDefault();
	console.log('Click on the link 1.');
});

$('a').click(function(event){
	event.preventDefault();
	event.stopImmediatePropagation();
	console.log('Click on the link 2.');
});

$('a').click(function(event){
	event.preventDefault();
	console.log('Click on the link 3.');
});

$('a').click(function(event){
	event.preventDefault();
	console.log('Click on the link 4.');
});