CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 10 Aug 2025 01:26:56 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100510191305
location: https://web.archive.org/web/20100510191305/https://github.com/jquery/jquery-tmpl
server-timing: captures_list;dur=1.189955, exclusion.robots;dur=0.038493, exclusion.robots.policy;dur=0.016956, esindex;dur=0.021305, cdx.remote;dur=28.660469, LoadShardBlock;dur=376.358412, PetaboxLoader3.datanode;dur=73.402107, PetaboxLoader3.resolve;dur=211.810052
x-app-server: wwwb-app219
x-ts: 302
x-tr: 458
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app219; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Sun, 10 Aug 2025 01:26:56 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Mon, 10 May 2010 19:13:05 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "3075dd0ef4102915b0c0c6e8b815647f"
x-archive-orig-x-runtime: 180ms
x-archive-orig-content-length: 18144
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 10 May 2010 19:13:05 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Wed, 10 Mar 2010 12:49:40 GMT", ; rel="prev memento"; datetime="Mon, 22 Mar 2010 20:34:15 GMT", ; rel="memento"; datetime="Mon, 10 May 2010 19:13:05 GMT", ; rel="next memento"; datetime="Sat, 12 Jun 2010 00:00:04 GMT", ; rel="last memento"; datetime="Tue, 29 Jul 2025 13:48:05 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_15_20100510144409_crawl103-c/52_15_20100510191144_crawl101.arc.gz
server-timing: captures_list;dur=0.552738, exclusion.robots;dur=0.020489, exclusion.robots.policy;dur=0.010699, esindex;dur=0.014143, cdx.remote;dur=28.254135, LoadShardBlock;dur=190.575257, PetaboxLoader3.datanode;dur=91.110501, PetaboxLoader3.resolve;dur=168.876953, load_resource;dur=98.551599
x-app-server: wwwb-app219
x-ts: 200
x-tr: 422
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
jquery's jquery-tmpl at master - GitHub
jquery / jquery-tmpl
- Source
- Commits
- Network (11)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
name | age | message | |
---|---|---|---|
![]() |
README.md | Thu Mar 04 20:05:07 -0800 2010 | Tweaked the README example. [jeresig] |
![]() |
demo.html | Wed Mar 31 12:48:19 -0700 2010 | Add in support for executing functions that are... [jeresig] |
![]() |
jquery.tmpl.js | Wed Mar 31 18:29:02 -0700 2010 | Fail on all falsy values. [jeresig] |
README.md
A jQuery templating plugin - created for demonstration purposes.
$("#sometmpl")
.render( dataObject ) // Returns a LI with all the data filled in
.appendTo("ul");
$("#sometmpl")
.render( arrayOfDataObjects ) // Returns multiple LIs with data filled in
.appendTo("ul");
// Appends one LI, filled with data, into the UL
$("ul").append( tmpl, dataObject );
// Appends multiple LI, filled with data, into the UL
$("ul").append( tmpl, arrayOfDataObjects );