JSFiddle - React, Tailwind, and code Playground

by deepak sisodiya

HTML

<p><a href="http://www.w3schools.com" id="w3s">W3Schools.com</a></p>
<button id="change">Change href Value</button>
<button id="show">show href Value</button>

JavaScript

// jquery set attribute value attr() method

$("#change").click(function () {
    $("#w3s").attr("href", "http://www.w3schools.com/jquery");
});

$("#show").click(function () {
    alert($("#w3s").attr("href"))
});