I have a website that I have very little control over.
The preset form has selected options I would like set different.
Example of the code is:
<form id="myForm" action="https://secure.domain.net/account/order" method="post">
<table><tbody><tr class="paperTR tr_class_paper"><td class="paperTD fiTitle fiItem">
<div>Paper</div>
<select id="paper" name="paper" onchange="EC_LithoCalc.updateForm()">
<option value="1">Option1</option>
<option value="2">Option2</option>
<option value="3">Option3</option>
<option value="4">Option4</option>
</select>
</td></tr></tr></tbody></table>
</form>
I've tried many variants of the example: domain.com/page?paper=1
But nothing seems to work for me.
Everything I find is talking about javascript or jquery, but I don't have any knowledge of those. Though, I know that coding should start with a < tag and what I see just looks like what goes inside.
I'm so confused.
Can anyone out there help me?
I been on this all day and I would appreciate any help.
Thank you.