I have a route with a parameter setup.
On my page I have a success event on form submit that should send the user to another page.
If I statically set a route it works.
If I try to set a browser.alert the value is set correctly. If I look at the “code” view then I see “inp_slug.value”
If I try to set a bowser.goto the value is not set correctly. If I look at the code then I see “modal1.serverconnectform1.inp_slug.value”.
I’m selecting the same element in both actions, but for some reason, the goto adds extra detail that causes the URL to not have the value. If I change the “code” in the goto to “inp_slug.value”, then it works.