 |
Launching an Atlas ModalPopupExtender from JavaScript
Paul Hayman (28524 views)
Launching an Atlas ModalPopupExtender from JavaScript
{Looking for an '''Ajax version''' of this article??}http://www.geekzilla.co.uk/View38736C2B-BAD3-418A-A5B0-DAC4F1A5A83A.htm
Looking round the web there are some crazy ways people are trying to launch the ModalPopupExtender from JavaScrip
|
 |
Garmin and Google Maps
Dave Howard (8709 views)
Garmin and Google Maps
The bought a Garmin Forerunner recently which is a really cool piece of kit but the maps that come with it are very poor.
Google maps has an API that allows you to integrate these rich maps into your own web applications.
Garmin has the option to export your traini
|
 |
Lightweight Ajax
Dave Howard (5073 views)
Lightweight Ajax
#$#<a href="http://www.dotnetkicks.com/kick/?url=http://www.geekzilla.co.uk/ViewC77497B2-2CD6-4FBC-968C-93AFF2F397EB.htm"><img src="http://www.dotnetkicks.com/Services/Images/KickItImageGenerator.ashx?url=http://www.geekzilla.co.uk/ViewC77497B2-2CD6-4FBC-968C-93AFF2F397EB.htm" bo
|
 |
TAB inside input boxes
Barrington Haynes (4749 views)
TAB inside input boxes
When you want to insert a TAB character inside a textarea (or a textbox) in a web page, you press TAB key and the focus moves to another field in the page instead of a TAB character being inserted into the textarea. The problem is that TAB key is reserved for web pages to
|
 |
Date and Time Functions
Barrington Haynes (3073 views)
Date and Time Functions
Here's a handy reference for all of your JavaScript date/time needs.
||'''Function'''||'''Description'''||'''Returned Values'''||
||getDate(), getUTCDate()||Day of the month||1-31||
||getDay(), getUTCDay()||Day of the week (integer)||0-6||
||getFullYear(), getUTCFu
|
 |
Prompting the user
Barrington Haynes (1495 views)
Prompting the user
There are three functions you can call which will force the user to acknowledge them. These are
* alert()
* confirm()
* prompt()
alert()
If you would like to present the user with a notice before allowing them to continue using your web page, you can display a
|