Guest User

Untitled

a guest
Apr 26th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function validate(which) {
  2. var form = document.forms[0];
  3. var textareas = form.select['textarea'];
  4. var radios = form.select('input[type="radio"]');
  5.  
  6. return !(textareas || radios) || (textareas.any(function(t){
  7. return t.value;
  8. }) && radios.any(function(r){
  9. return r.checked;
  10. }));
  11. };
Add Comment
Please, Sign In to add comment