Introduction back to top
What is AK DatePicker?
AK DatePicker is a JavaScript calendar and date picker. Your visitors can easily, quickly and accurately
fill out the date/time field(s) on your forms, by selecting this info from an attractive popup calendar.
Is it really free?
Yes! It's really free.
Requirements back to top
What are the browser requirements?
AK DatePicker does not requires any specific brower. It should work fine on any type of browers. However, we couldn't able
to test it with all different brower types. Your bug's report is so appreciated.
Can I see an example of what it looks like?
Here it is:
Where can I find out more info and download the latest version?
You can find out more about AK DatePicker and download the latest version on the
AK DatePicker homepage.
Installation / Setup back
to top
How do I add AK DatePicker to my web page?
It's easy, first you need to upload the AK DatePicker files to your website. Just
follow these steps:
- Download the latest version from the AK DatePicker
homepage.
- Unzip the files onto your local computer (making sure to maintain the
directory structure contained in the zip).
- Create a new folder on your website called /AK_DatePicker/ (make sure it's
NOT inside the cgi-bin).
- Transfer all the AK_DatePicker files from your local computer into the /AK_DatePicker/
folder on your website.
- Open the example page /AK_DatePicker/index.html with your browser to make
sure everything works.
Once AK DatePicker is on your website all you need to do is add some JavaScript codes
to any pages that you want to add it to. Here's how to do that.
<html>
<head>
<title>DatePicker</title>
<script language="JavaScript" src="AK_DatePicker/datepicker.js">
</script>
|
</head>
<body>
<form name="formName">
<input type="Text" id="myTextBoxID" value="">
<a href="javascript:show_calendar('myTextBoxID', 'AK_DatePicker/');"><img src="AK_DatePicker/date.gif" border="0"></a>
|
</form>
</body>
</html>
NOTE:
- Make sure your directory to datepicker.js right.
- Function: show_calendar(textbox_ID, Directory_to_datepicker.js_file)