Skip to content

Instantly share code, notes, and snippets.

@codebycliff
Created October 11, 2012 16:31
Show Gist options
  • Save codebycliff/3873634 to your computer and use it in GitHub Desktop.
Save codebycliff/3873634 to your computer and use it in GitHub Desktop.
Hello, CS At Once! 2
<!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', ->
q="http://www.nutorrent.com/search.php?x=0&y=0&words=%s".replace( "%s", encodeURIComponent($('#txt').val() ))
window.location.href =q
#replace "%s", $('#txt').val
body {
background: #eee;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment