can't create dialog

can't create dialog

Hello,

I'm trying to create a jquery dialog but it's not working. I'm hoping someone can tell me what I'm doing wrong. Here is my code:

  1. <html>

  2. <head>
  3. <link type="text/css" rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/jquery-ui.css"/>
  4. <script src="http://code.jquery.com/jquery-1.9.1.js" type="text/javascript"></script>
  5. <script src="http://code/jquery.com/ui/1.10.3/jquery-ui.js" type="text/javascript"></script>
  6. </head>

  7. <body>

  8. <div id="HelloDiv">
  9. Hello
  10. </div>

  11. <script>


  12. $(document).ready(function()
  13. {
  14. $("#HelloDiv").dialog();
  15. });



  16. </script>

  17. </body>
  18. </html>