1

There's a form on a website that looks like this:

<form action="/some_action">
<input type="radio" name="opt" value="1"> Option 1
<input type="radio" name="opt" value="2"> Option 2
<input type="radio" name="opt" value="3"> Option 3
</form>

In graphical browsers, some JavaScript is bound to the form which submits it when one of the radio buttons is selected. Lynx docs say you can submit a form by moving to a submit button and pressing Right arrow or Enter, but there's no submit button. Those keys only select an option and show an error message if pressed twice. Key x doesn't work either, it is intended for submit buttons and links.

Is there a way to submit this form in Lynx?

My Lynx version is 2.8.7rel.1

dhag
  • 15,736
  • 4
  • 55
  • 65
pati
  • 11

1 Answers1

2

The way the form is structured, no there is no way to submit it in Lynx. Why? Lynx does not support Javascript.

John
  • 17,011