How do you make an element like <p>
or similar trigger the form submission. I do not want to use a button.
Is there a way?
<form>
<p>I want this to be clicked to submit the form</p>
<input type='submit' value='Not this one. This is too cliche for me'>
</form>
` tag is not a clickable element per se (unlike `
– Terry Dec 03 '17 at 19:36I want this to be clicked to submit the form
` – Tushar Niras Dec 03 '17 at 19:48