[jQuery] .formdata workaround
since i could not find anything that gives me the inserted data of a form(without submitting)
AND getForm().vars is way to slow, im using this atm
<a href="mailto:discuss@jquery.com"> $("#form") .find("input[@checked], input[@type='text'], input[@type='hidden'], input[@type='password'], input[@type='submit'], option[@selected], textarea")
.filter(":enabled")
.each(function() {
params[ this.name || this.id || this.parentNode.name || this.parentNode.id ] = this.value
});
</a>
if there is another way to get formdata (FAST) plz tell me.
mfg M.G.
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/