JSFiddle - React, Tailwind, and code Playground
by ericf
HTML
<p>Foo <a href="http://yahoo.com">Yahoo!</a></p>
<div id="container" class="yui3-skin-sam"></div>
<p>Foo <a href="http://flickr.com">Flickr</a></p>
JavaScript
YUI().use('panel', function (Y) {
var panel = new Y.Panel({
width : 300,
height : 200,
modal : true,
buttons : [],
headerContent : 'Foo'
});
panel.render('#container');
});