Since a jQuery object inherits from an array, and this array contains the selected DOM elements.
Saying you're using an id and so the element should be unique within the DOM, you could perform a direct call to submit by doing :
$(".nextbutton").click(function() {
$("#formID")[0].submit();
});