ui.dialog.js is not draggable
Here is my code- just the relevant parts (actually it is not mine but
from here http://mdrisser.r1designs.net/blog/?p=3):
<head...
<script src="scripts/jquery/jquery-1.2.6.min.js" type="text/
javascript"></script>
<script src="scripts/jquery/UI/ui.core.js" type="text/javascript"></
script>
<script src="scripts/jquery/UI/ui.dialog.js" type="text/javascript"></
script>
<script src="scripts/jquery/UI/ui.draggable.js" type="text/
javascript"></script>
<script src="scripts/jquery/UI/ui.resizable.js" type="text/
javascript"></script>
<link rel="stylesheet" type="text/css" href="scripts/jquery/UI/themes/
flora/flora.all.css" />
$(document).ready(function() {
$('#dialogTest').addClass('flora').dialog( );
});
<body...
<div id="dialogTest" title="This is the dialog's title">Hey, check it
out!<br />I'm a dialog box!!!</div>
Does anyone knows why the dialog is not draggable?
Thank you