All pastes #2106164 Raw Edit

Someone

public text v1 · immutable
#2106164 ·published 2012-01-25 22:34 UTC
rendered paste body
$('#bestilling').submit(function() {
  $('.fillone').each(function (i) { values = false; if (this.value !== '') { values = true; } });
    if (values == false) {
    alert('test a!');
    return false;
  } else {
    alert('test b');
    return true;
  }
});