2022.2

Table Of Contents
Selector Matched element Matched element after script execution
div <div>
<h1>Personalinformation</h1>
</div>
<div>
<h1>Personalinformation</h1>
</div>
<div>
<h1>Personalinformation</h1>
<p>PeterParker</p>
</div>
<div>
<h1>Personalinformation</h1>
<p>PeterParker</p>
</div>
ThefollowingscriptappendsasnippettoaDivelementwiththeIDbox.
var a = loadhtml('snippets/snippet_name.html');
results.append(a);
Selector Matched element Matched element after script execution
#box <divid="box">
<h1>Personalinformation</h1>
</div>
<divid="box">
<h1>Personalinformation</h1>
<p>PeterParker</p>
</div>
ThisscriptlooksforanelementwiththeIDboxandappendsaparagraphtoit.
query("#box").append("<p>Peter Parker</p>");
Matched element Matched element after script execution
<divid="box">
<h1>Personalinformation</h1>
</div>
<divid="box">
<h1>Personalinformation</h1>
<p>PeterParker</p>
</div>
ThisscriptlooksforanelementwiththeIDbox,appendsaparagraphtoitandcolorsalltextinsidethe
boxred.
query("#box").append("<p>Peter Parker</p>").css("color","red");
Page 789