I have searched all of google for a second to last table field selector, where the last table selector is used like this:
$('.tableClass').find(".inputClass:last input")
The only other methods that seem to exist are nth-last-child and nth-last-type where type is of the child. When using the word child in the statement, like the following, the entire concept breaks down and the values start getting dropped into random fields within the table.
$('.tableClass').find(".inputClass:nth-last-child(2) input")
Here is the documentation on using the :last selector. This has nothing to do with accessing children.
https://www.w3schools.com/jquery/sel_last.asp
Suddenly, all the documentation regarding second to last is forcing the use of children. Where did I drift off?
https://api.jquery.com/nth-last-child-selector/
https://api.jquery.com/nth-last-of-type-selector/