Created
December 15, 2010 05:04
-
-
Save Lobstrosity/741651 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <title>Templates</title> | |
| </head> | |
| <body> | |
| <div class="listing"></div> | |
| <script class="listing" type="text/x-jquery-tmpl"> | |
| <p>${firstName} ${lastName}</p> | |
| <ul> | |
| {{each phoneNumbers}} | |
| <li>${$value}</li> | |
| {{/each}} | |
| </ul> | |
| </script> | |
| <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> | |
| <script src="https://github.com/jquery/jquery-tmpl/raw/master/jquery.tmpl.min.js"></script> | |
| <script> | |
| var user = { | |
| firstName: 'John', | |
| lastName: 'Doe', | |
| phoneNumbers: [ | |
| '555-1111', | |
| '444-8888' | |
| ] | |
| }; | |
| $('div.listing').html($('script.listing').tmpl(user)); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment