$('login_email').observe('click', function(event){
element = event.element()
element.value = '';
...
JavaScript Prototype form functions
// form fields
var address = $("#address");
var zip = $("#zip");
...
JavaScript Perform AJAX request when t...
If three fields (address, z...
//function that loops through the elements
function __validateForm(theform){
...
JavaScript Simple form validator with ...
by eljota,
November 11, 2007 10:32,
5 refactorings, tagged with javascript, js, form, validation, regex
This is a real simple form ...
I'm thinking there's gotta ...