JSFiddle - React, Tailwind, and code Playground
by Nick Hulea
HTML
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<body>
<div id="notice-dialog" title="Basic dialog">
<p>This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
<button id="opener">Open Dialog</button>
<iframe width="300" scrolling="no" height="13" frameborder="0" allowtransparency="true" hspace="0" vspace="0" marginheight="0" marginwidth="0" src="http://googleads.g.doubleclick.net/pagead/viewthroughconversion/1000592525/?random=1381965510550&cv=7&fst=1381965510550&num=1&fmt=1&label=R7pJCOuY-AMQjamP3QM&guid=ON&u_h=1200&u_w=1920&u_ah=1160&u_aw=1920&u_cd=24&u_his=2&u_tz=-420&u_java=true&u_nplug=23&u_nmime=111&url=http%3A//www.nhm.org/site/for-teachers/visit-the-museum/book-your-visit%23&frm=0" title="Google conversion frame" name="google_conversion_frame" style="display none;"></iframe>
</body>
JavaScript
$(function () {
$("#notice-dialog").dialog({
autoOpen: false,
//bgiframe: true,
//modal: true,
//position: top,
closeOnEscape: false,
draggable: false,
width: 400
});
$("#opener").click(function () {
$("#notice-dialog").dialog("open");
});
});