I have a series of rows with columns and I want to select the value of an input field that is in a previous column to the input field (price input)
input
closest() only looks for parents, I'm guessing what you really want is .find()
closest()
$(this).closest('.row').children('.column').find('.inputQty').val();