1

I am having an issue with using ajaxSubmit with jQuery Form - even when POSTing a form it will occasionally have all parameters serialized into a querystring. They are included as form data too but the querystring will occasionally esceed the server's maximum url length.

Does anyone know why this is happening slash if there is some way to prevent it.

1 Answer 1

3

Have you used the type of ajaxform?This will help you to send it as POST.Just set the type to post.Its GET by default Like

$('#yourFrmId').ajaxForm({
  type : 'Post',
  ...... so on
});
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.