JSFiddle - React, Tailwind, and code Playground

HTML

<body>
		<div id="hello"></div>

		<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
		<script src="http://underscorejs.org/underscore.js"></script>
		<script src="http://backbonejs.org/backbone-min.js"></script>
	</body>

JavaScript

(function($){
	var HelloView = Backbone.View.extend({
		el: $('#hello'),
		initialize: function(){
			this.render();
		},
		render: function(){
			$(this.el).html("<h1>Hello World</h1>");
		}
	});

	var helloView = new HelloView();
})(jQuery);