To serialize (URL Encod) the html form data that can be sent to the server, serialize()
method can be used.
<form method="post" action="somepage.html">
<input type="button" id="btnSerialize" value="Serialize data" /> <textarea id="txtArea1" name="txtArea1" rows="10" cols="50"></textarea> </form>
<script> $("#btnSerialize").click(function () { var data = $("form").serialize(); $("#divData").val(data); }); </script>
In the above code snippet, on click button “btnSerialize”, all the form element and its data will be serialized into a string that can be sent to the server. In this case, after serializing, we are writing that data into "divData" element.
Views: 8689 | Post Order: 111