2022.2

Table Of Contents
Thisscriptloadsasnippetintoavariable.Thenitfinds/replacestextinthesnippetandappliesacss
propertytothereplacingtext.
var mysnippet = loadhtml('snippets/snippet vars.html');
mysnippet.find('@var@').text('OL Connect').css('text-decoration','underline');
results.replaceWith(mysnippet);
css(properties)
FunctiontosetoneormultipleCSSpropertiesofoneormoreHTMLelements,whichcanbe:
l
Theelementsthatmatchtheselectorofascript(see"results"onpage1301).
l
Oneelementthatmatchestheselectorofascriptthatrunsfor"Eachmatchedelement"(see
"this"onpage1237and"Settingthescopeofascript"onpage813).
l
Theelementsreturnedbyaqueryinthetemplate(see"query()"onpage1197).
properties
Array;mapofproperty-valuepairstoset.
Examples
Thisscriptcolorsthetextoftheresults(thesetofHTMLelementsthatmatchtheselectorofthe
script)redandmakesitbold.
results.css({'color' : 'red', 'font-weight' : 'bold'});
empty()
Removesthecontents(childelementsandinnerHTML)fromoneormoreHTMLelements,whichcan
be:
l
Theelementsthatmatchtheselectorofascript(see"results"onpage1301).
l
Oneelementthatmatchestheselectorofascriptthatrunsfor"Eachmatchedelement"(see
"this"onpage1237and"Settingthescopeofascript"onpage813).
l
Theelementsreturnedbyaqueryinthetemplate(see"query()"onpage1197).
Use"remove()"onpage1265toremovetheelementsthemselves.
Example
ThisscriptemptiesallSpanelementsfoundinthetemplate.
results.empty();
Page 1254