attr
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<a id = 'test' href="https://www.google.com" title="hhuhu" text-decoration : none>google</a>
<input id = 'test1' value = '20' type = 'text'/>
<button id = "btn1">
test
</button>
<button id = "btn2">
test1
</button>
JavaScript
$(document).ready(function(){
$("#btn1").click(function(){
$("#test").attr({"href" : "bongdaplus.vn", "title" : "hihihi"});
});
});