Hi!
I'm trying submit some form using ajax
//include jquery-1.4.2.min.js
var submitForm = document.createElement("FORM");
...
jQuery.post(submitForm.getAttribute('action'), submitForm.serialize(), function(data) {
bla-bla
});
But there is error : "Error: submitForm.serialize is not a function" (FF)
What can I do? Thanks.