HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery attr() Method</h1> <p>Click on the button to set multiple attribute.</p> <input type="text"> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ $("input").attr({ "placeholder": "type something", "size": "15" }); }); }); </script> </body> </html>
OUTPUT
×

Save as Private