how to send the data through url in html without using the form

Solutions on MaxInterview for how to send the data through url in html without using the form by the best coders in the world

showing results for - "how to send the data through url in html without using the form"
Federico
08 Feb 2020
1<!DOCTYPE html>
2<html>
3    <body>
4        <form id="myform" method="post" action="/">
5            {% csrf_token %}
6            <input type="hidden" name="flag" value="2" />
7            <a href="#" onclick="document.forms[0].submit();return false;">Let's go!</a>
8        </form>
9    </body>
10</html>
11