|
html()html() : StringReturns the inner HTML of the first element in this result set. html(value)Replaces the inner HTML of each element in this result set by the supplied value. value A String that may contain HTML tags. ExamplesThe following script loads part of a snippet based on the value of a field, and then inserts the content into the document using
The following script loads a snippet. Then it looks for a placeholder (@var2@) in the text of that snippet and replaces every found placeholder by the text '<i>OL Connect 1</i>'. It uses html() so the HTML formatting (<i> and </i>) will indeed be interpreted as HTML. Finally, it places the snippet in the template.
|
|