Home

Modify attributes

Image 1 Image 2 Image 3 Image 4

$("main img:first-child").attr("title","A new title for the first image");const t=$("main img:nth-child(2)");t.attr("title",t.attr("alt")),$("main img:nth-child(3)").attr("src","https://picsum.photos/id/742/200/200"),$("main img:last-child").attr({title:"A new title for the last image",width:"100px",height:"100px"});
//# sourceMappingURL=attributes.js.map