Skip to content

Instantly share code, notes, and snippets.

@dasim
Created January 23, 2012 14:10
Show Gist options
  • Save dasim/1663336 to your computer and use it in GitHub Desktop.
Save dasim/1663336 to your computer and use it in GitHub Desktop.
t
<!doctype html>
<html class="no-js" lang="cs">
<head>
</head>
<body>
<script src="http://documentcloud.github.com/underscore/underscore-min.js"></script>
<script src="http://documentcloud.github.com/backbone/backbone.js"></script>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
$(function() {
Person = Backbone.Model.extend({
initialize: function()
{
alert("Welcome");
}
});
var person = new Person({ name: "Dan", lastname: "Panek" });
console.log(person.get('name'));
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment