I am aware of sending form values using the method=get
<FORM METHOD=get ACTION="test.html">
I have a textbox which captures email. When i submit form using the GET method the @ is converted to %40.
I had read somewhere that Jquery could send the data across by serializing. How can it be done?
Thanks
If you want to submit a form using jQuery serialize() and GET method, you can do something like this:
If you use PHP:
Form:
jQuery:
In test.php you can get email like this:
$_GET['email']More Detail:
http://api.jquery.com/jQuery.ajax/