Created
June 26, 2013 15:50
-
-
Save frankV/5868593 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> | |
<head> | |
<title>Handelbars Example 1</title> | |
<script src="js/handlebars.js"></script> | |
<!-- notice this will not display until the data is populated --> | |
<script id="result-template" type="text/x-handlebars-template"> | |
<h2>Your Bio</h2> | |
<p> | |
Your name is {{firstname}} {{lastname}} and you love {{food}}. | |
</p> | |
</script> | |
</head> | |
<body> | |
<h2>Render Simple Bio</h2> | |
<input type="text" id="firstname" placeholder="First Name"><br/> | |
<input type="text" id="lastname" placeholder="Last Name"><br/> | |
<input type="text" id="food" placeholder="Favorite Food"><br/> | |
<button id="demoButton">Demo</button> | |
<div id="resultDiv"> <!-- the template will display here --> </div> | |
<!-- le javascript --> | |
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
//Get the contents from the script block | |
var source = document.querySelector("#result-template").innerHTML; | |
//Compile them into a template | |
template = Handlebars.compile(source); | |
// on click of #demobutton, populate values and display template | |
document.querySelector("#demoButton").addEventListener("click", | |
function() { | |
var fname = document.querySelector("#firstname").value; | |
var lname = document.querySelector("#lastname").value; | |
var food = document.querySelector("#food").value; | |
var html = template({firstname:fname, lastname:lname, food:food}); | |
document.querySelector("#resultDiv").innerHTML = html; | |
}); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment