From dc94b62a881ca46f46a39d8f6af2cd4659861be6 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Wed, 13 Jan 2010 00:21:23 +0100 Subject: Example of the form serialization code. DON'T USE DIRECTLY, GPLv3!!! --- offline-submit/form-serialization.js | 37 ++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 offline-submit/form-serialization.js (limited to 'offline-submit') diff --git a/offline-submit/form-serialization.js b/offline-submit/form-serialization.js new file mode 100644 index 0000000..70c9ae0 --- /dev/null +++ b/offline-submit/form-serialization.js @@ -0,0 +1,37 @@ +/** + * (C) Thomas 'PointedEars' Lahn, 2009, released under GPLv3 + * + * Retrieves the data to send in the request, and optionally the request + * method, from an (X)HTML form. TODO: select[multiple] elements + * + * @param f : HTMLFormElement + * @param bUseFormMethod: optional boolean + * If true, the form's request method becomes the + * HTTPRequest object's request method. The default + * is false. + * @return boolean + */ +getDataFromForm = function(f, bUseFormMethod) { + var result = false, es, len; + + if (f && (es = f.elements) && (len = es.length)) + { + if (bUseFormMethod) this.method = f.method; + + var aData = []; + + for (var i = 0; i < len; i++) + { + var o = es[i]; + if (o.name) + { + aData.push(esc(o.name) + "=" + esc(o.value != "" ? o.value : "")); + } + } + + this.data = aData.join("&"); + result = true; + } + + return result; +}; -- cgit