can someone help me and tell me why i cant center jQuery UI Dialog
Pos
<script src="js/jquery-1.7.1.js"></script> <script src="js/jquery.ui.core.js"></script> <script src="js/jquery.ui.widget.js"></script> <script src="js/jquery.ui.button.js"></script> <script src="js/jquery.ui.mouse.js"></script> <script src="js/jquery.ui.resizable.js"></script> <script src="js/jquery.ui.dialog.min.js"></script> <style type="text/css" title="currentStyle"> </style> <style> </style> <script> $(function() { $('#addDialog').dialog({modal:true,buttons: { "Delete all items": function() { $( this ).dialog( "close" ); }, Cancel: function() { $( this ).dialog( "close" ); } },position: 'center'}); $("#resizable").resizable({ animate: true, maxWidth: 400, minWidth: 300, containment: ".fullscreen" }); }); </script> </head> <div id='addDialog' style="display: none;"> iohio </div> <body id="dt_example" style='overflow:hidden;'> <div class="fullscreen" style='overflow:hidden;'> <div style='float: left; height:90%;' id="resizable" > </div> <div id="resizable2" style='height:90%; overflow:hidden;'> <div id="container"> <div id="demo"> </div> </div> </div> </div> </body> </html>
source share