I’m trying to achieve the following:
this.inputs[options.el.find('form').attr('class')] = {};
this.inputs[options.el.find('form').attr('class')][options.elements[x].selector] = false;
However, I’m unable to do the above without a syntax error!
Any ideas how I could achieve this Object structure?
That syntax looks legal, but these long one liners aren’t doing anyone any favors. Break it apart a bit so you can find where it’s failing.