Prototype.js check if any form element is filled

Works for text input, checkboxes, radio, select, textarea

function isFilled(e){
  var type = e.getAttribute('type');
  if(type == 'radio' || type == 'checkbox'){
    return e.checked
  } else {
    return !e.value.empty()
  }
}

function anyFieldFilledIn(e){
  return e.select('input, select, textarea').map(function(e){return isFilled(e)}).any()
}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s