Parses the render options that would be used to submit the given form, but does not render.
Given a form element:
<form action="/foo" method="post" up-target=".content">
...
</form>
We can parse the link's render options like this:
let form = document.querySelector('form')
let options = up.form.submitOptions(form)
// => { url: '/foo', method: 'POST', target: '.content', ... }
Additional options for the form submission.
Values from these options will override any attributes set on the given form element.