In this first step get the basics of a jQuery UI project in place. We will make a page that includes the standard jQuery UI calendar widget.
In demo.html we have some basic markup for a page:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>GridTable Demo</title> <script src="http://www.google.com/jsapi"></script> <script> google.load("jquery", "1.3.2"); google.load("jqueryui", "1.7.2"); </script> <link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/smoothness/jquery-ui.css" /> <link rel="stylesheet" href="demo.css"/> <script src="demo.js"></script> </head> <body> <h1>GridTable Demo</h1> <input type="text" name="date" id="date" /> </body> </html>