vote up 0 vote down star
1

Hello,

I have a form with lots of data to be posted, so i was wondering if there is any way to get all the data to be posted automatically.

like for example i sent data this way

$.ajax({
	 	type: 'post',
        url: 'http://mymegafiles.com/rapidleech/index.php',
        data: 'link=' + $('#link').val() + '&yt_fmt' + $('#yt_fmt').val(),

	 });

but there are so many fields that it doesnt look a good idea to me.

Thank You.

flag

3 Answers

vote up 2 vote down check
$.ajax({ 
    type: 'post',
    url: 'http://mymegafiles.com/rapidleech/index.php',
    data: $('#formId').serialize()
});
link|flag
vote up 1 vote down

Assuming the fields are all part of a form, you'll be wanting to use $('form').serialize()

link|flag
vote up 0 vote down

You can just call '.submit()' on the form?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.