Skip to content

Instantly share code, notes, and snippets.

@iruslani
Created August 13, 2012 18:41
Show Gist options
  • Save iruslani/3343074 to your computer and use it in GitHub Desktop.
Save iruslani/3343074 to your computer and use it in GitHub Desktop.
HTML file with jquery, underscore and backbone already included
<!DOCTYPE html>
<html>
<head>
<title>I have a backbone</title>
<style>
</style>
</head>
<body>
<p>Follow the example from here : <a href="http://bonsaiden.github.com/JavaScript-Garden/">http://bonsaiden.github.com/JavaScript-Garden/</a> </p>
<div id="search_container">
<p>You need to view javascript console to view console.log locally in Chrome</p>
<p>To do this:</p>
<ul>
<li>Click Wrench Icon</li>
<li>Select Tools</li>
<li>Select JavaScript Console</li>
</ul>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/underscore.js/1.1.4/underscore-min.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/backbone.js/0.3.3/backbone-min.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment