Skip to content

Instantly share code, notes, and snippets.

@thenoseman
Created August 30, 2015 11:14
Show Gist options
  • Save thenoseman/2c72d88a5ce63ac7277d to your computer and use it in GitHub Desktop.
Save thenoseman/2c72d88a5ce63ac7277d to your computer and use it in GitHub Desktop.
Form-O-Fill: Fill only empty fields
var rules = [{
url: /all-types/,
name: "Just fill empty fields",
fields: [{
"selector": "input[type=text]",
"value": function($e) {
return (!$e.val() ? "use this" : null);
}
},{
"selector": "textarea",
"value": function($e) {
return (!$e.val() ? "use this" : null);
}
}]
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment