Skip to content

Instantly share code, notes, and snippets.

@jeremy5189
Created October 7, 2012 02:54
Show Gist options
  • Save jeremy5189/3846926 to your computer and use it in GitHub Desktop.
Save jeremy5189/3846926 to your computer and use it in GitHub Desktop.
Animate
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>$title</title>
$styles
</head>
<body>
<h1>$title</h1>
<p>
<input type="text" id="txt" value="Hello, $title!" />
<input type="button" id="btn" value="hello" />
</p>
$scripts
</body>
</html>
$ ->
$('#btn').on 'click', ->
alert $('#txt').val()
body {
background: #eee;
}
@jeremy5189
Copy link
Author

Coffee Script

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment