Any methods to submit a POST request from a link if JS is disabled?
Ideeas so far (none of them perfect)
- Use <input type='submit>, but I need a link not a button
- Use <a href='' onclick='form.submit()' > but that relies on JS
- Use <input type='image'> ... again .. not really a link
I need a fallback method for browsers without JS, and my area for these "buttons" is too small for buttons or images