password inputs not supported
Brought to you by:
asleson
Hi
I noticed that your form query serializer function:
function toQueryString(elements)
doesn't support password inputs.
Heres a fix:
if(node.type.toLowerCase() == "text" ||
node.type.toLowerCase() == "hidden" ||
node.type.toLowerCase() == "password")
Dave