2004-03-25

azurelunatic: Vivid pink Alaskan wild rose. (Default)
2004-03-25 12:58 pm

Linkage of the Day

Warlords of Fruitcake -- [livejournal.com profile] p_o_u_n_c_e_r ponders the meaning of certain military peacemaking actions, and care packages.

Ocean on Mars! Free shrimp!
azurelunatic: Vivid pink Alaskan wild rose. (Default)
2004-03-25 05:28 pm

Copied JS validation function

http://www.scriptygoddess.com/archives/003348.php
function validate() {

//check a field to make sure it has something filled in
if(document.formName.textFieldName.value == '') {
alert('Please fill out textFieldName.');
document.formName.textFieldName.focus();
return false;
}

Remember. Good programmers are lazy. They do not want to do stuff themselves by hand unless absolutely necessary. So. Heh. Will tweak later.