JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://documentcloud.github.com/underscore/underscore-min.js"></script>
<script src="http://documentcloud.github.com/backbone/backbone-min.js"></script>

JavaScript

var View = Backbone.View.extend({
  events: {
    "click #link": "click"
  },

  click: function(){
      alert('Here');
    console.log( "click event" );
  },

  render: function(){
    this.$el.html( "<a href='#' id='link' onclick='return false'>link</a>" );
  }
});

new View({ el: "body" }).render();