|
Lines 42-48
function submitBackgroundJob(f) {
Link Here
|
| 42 |
|
42 |
|
| 43 |
// gather up form submission |
43 |
// gather up form submission |
| 44 |
var inputs = []; |
44 |
var inputs = []; |
| 45 |
$(':input', f).each(function() { |
45 |
$(':input:enabled', f).each(function() { |
| 46 |
if (this.type == 'radio' || this.type == 'checkbox') { |
46 |
if (this.type == 'radio' || this.type == 'checkbox') { |
| 47 |
if (this.checked) { |
47 |
if (this.checked) { |
| 48 |
inputs.push(this.name + '=' + encodeURIComponent(this.value)); |
48 |
inputs.push(this.name + '=' + encodeURIComponent(this.value)); |
| 49 |
- |
|
|