Skip to content

Instantly share code, notes, and snippets.

@rkusa
Created January 20, 2014 18:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rkusa/8525500 to your computer and use it in GitHub Desktop.
Save rkusa/8525500 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
...
</head>
<body>
<div id="your-id">
</div>
<template id="your-template-id">
<img src="" />
...
</template>
</body>
</html>
Backbone.View.extend({
el: '#your-id',
template: document.querySelector('#your-template-id').content,
render: function() {
var template = this.template.cloneNode(true)
template.querySelector('img').src = this.model.get('imgUrl')
this.$el.empty().append(template)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment