JSFiddle - React, Tailwind, and code Playground
by John Schulz
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<script src="http://github.com/getify/LABjs/raw/dd0b3181abdb42533a9435a030748608726e2f2c/LAB.src.js"></script>
<script>
console.log('LABjs loaded');
$LAB
.script("http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js")
.script("http://ajax.googleapis.com/ajax/libs/mootools/1.2.4/mootools-yui-compressed.js")
.script("http://ajax.googleapis.com/ajax/libs/ext-core/3.1.0/ext-core.js")
.wait(function(){ console.log('NON jQuery libs loaded'); })
.script("http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js")
.wait(function(){ console.log('LAB loaded jQuery'); })
.script("http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js")
.wait(function(){ console.log('LAB loaded jQuery UI'); })
;
console.log('LAB command finished');
</script>
</head>
<body>
<p id="hello">Hello World</p>
</body>
</html>
JavaScript
console.log('1st script tag in body');
console.log('have jQuery?', window.jQuery);