[jQuery] Form Plugin
[jQuery] Form Plugin
Hi
Complete newbie now completely out of depth!
I have built a form using form wizard plugin http://home.aland.net/sundman/.
It caters for the intergration of “Form Plugin” http://malsup.com/jquery/form/.
I now want to post the form using the “Form Plugin” AJAX. I am using
asp for severside. I just can’t work out how to get the input values
to a asp page so I can use them.
This is the code so far.
$(function(){
$("#demoForm").formwizard({ //wizard settings
historyEnabled : true,
formPluginEnabled: true,
validationEnabled : true
},
{
//validation settings
messages: {email: "Felaktig email (localized into Swedish)"} },
{
// form plugin settings
success: function(data){alert(data.registration.statusMessage);},
: function(data){alert("about to send the following data: \n\n" +
$.param(data))},
dataType: 'json',
resetForm: false
}
);
});