Ok, I have it working as expected/desired but need to slim it down its way way too big.
http://tinypaste.com/26334One thing to note, this is just one fieldset of 5, so if I don't specify the input's by ID and use something like
...
var result =[];
$(function() {
$(':radio,:checkbox').click(SetServices);
});
function SetServices() {
if ($(this).is(':checked')) {
result.push(this.id);
}
}
...
It loops through and gets all the ID's of the form, which are not needed. I had to use ID's for some functionality on the input's that aren't needed, hence the dilema! Please help, Im happy this works, but its so bloated. Also,
on the "symbols" row, I have to submit #1KNTK every time. If someone selects the "200" option or "500" option it is submitted with the "100/1KNTK". This is the only way I was able to remove "200/500" if the user selects, then deselects it. As always your help and expert coding is always much appreciated!
Kane Leins