JSFiddle - React, Tailwind, and code Playground
by NesterOne
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<div id="myId">hjgj</div>
<script src="http://underscorejs.org/underscore-min.js"></script>
<script src="http://backbonejs.org/backbone-min.js"></script>
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script>
var Song = Backbone.View.extend({
render: function(){
this.$el.html("Hello world");
return this;
}
});
var song = new Song({el:"myId"});
song.render();
</script>
</body>
</html>