attr() method to set multiple attributes at the same time. - Javascript jQuery Method and Property

Javascript examples for jQuery Method and Property:attr

Introduction

The following example demonstrates how to set both the href and title attributes at the same time:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("#w3s").attr({
            "href" : "http://java2s.com",
            "title" : "jQuery Tutorial"
        });/*from  w  w w. j  a va 2  s  . com*/
    });
});
</script>
</head>
<body>

<p><a href="http://java2s.com" title="some title" id="myId">java2s.com</a></p>

<button>Change href and title</button>

</body>
</html>

Related Tutorials