jQuery.tmpl
-
jQuery.dependSettings
Properties of the Global jQuery Object | Internationalisation | Templates
Settings of the dependencies controller.
-
jQuery.plugin()
Core | Internationalisation | Templates
Specify a plugin.
-
jQuery.provide()
Core | Internationalisation | Templates
Provide a script.
-
jQuery.ready()
Document Loading | Core | Internationalisation | Templates
Specify a function to execute when required plugins are fully loaded.
-
.template()
Compile the contents of the matched element as a reusable compiled template.
-
{{each}} Template Tag
Used to iterate over a data array, and render the content between the opening and closing template tags once for each data item.
-
{{elem}} Template Tag
Used for define a simple access on an element in the rendered template.
-
{{else}} Template Tag
Used in association with the {{if}}...{{/if}} tag to provide alternative content based on the values of one or more expressions. The {{else}} tag can be used without a parameter, as in: {{if a}}...{{else}}...{{/if}}, or with a parameter, as in: {{if a}}...{{else b}}...{{/if}}.
-
${} Template Tag
Used for insertion of data values in the rendered template. Evaluates the specified field (property) on the current data item, or the specified JavaScript function or expression.
-
{{html}} Template Tag
Used for insertion of HTML markup strings in the rendered template. Evaluates the specified field on the current data item, or the specified JavaScript function or expression.
-
{{if}} Template Tag
Used for conditional insertion of content. Renders the content between the opening and closing template tags only if the specified data item field, JavaScript function or expression does not evaluate to false (or to zero, null, type "undefined", or the empty string ).
-
{{tmpl}} Template Tag
Used for composition of templates. Renders one or more nested template items within the rendered output of the parent template.
-
{{wrap}} Template Tag
Used for composition of templates which incorporate wrapped HTML content. Rendered template items can combine wrapped HTML content with template markup.
-
jQuery.template()
Create a reusable named template (compiled from markup).
-
.tmpl()
Take the first element in the matched set and render its content as a template, using the specified data.
-
jQuery.tmpl()
Render the specified HTML content as a template, using the specified data.
-
.tmplItem()
Return the
tmplItem
data structure for the rendered template that the matched element is part of. -
jQuery.tmplItem()
Return the
tmplItem
data structure for the rendered template that the specified element is part of.