Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8415449
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T01:27:02+00:00 2026-06-10T01:27:02+00:00

When submitting a form using post, what if I dont want it serialized (or

  • 0

When submitting a form using post, what if I dont want it serialized (or going as a string, which i feel is not safe) and want it to be submitted the same way as it would be if I wasn’t using jquery? How could I do that?

$.ajax({
        type: "POST",
        data: $("#sform").serialize(), //don't want to use this part. Want it go just like it would without using jquery

Is this data: something that “has to be” used? What are the alternatives to this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T01:27:04+00:00Added an answer on June 10, 2026 at 1:27 am

    and want it to be submitted the same way as it would be if I wasn’t using jquery?

    That’s exactly what the .serialize() method does 🙂 It formats the form data using application/x-www-form-urlencoded encoding which is the default format for html forms. So if you want the server to receive the data in exactly the same format as if you were not using javascript, then use the .serialize() method.

    The standard method to AJAXify a form is the following:

    $(function() {
        $('#sform').submit(function() {
            $.ajax({
                url: this.action,
                type: this.method,
                data: $(this).serialize(),
                success: function(result) {
    
                }
            });
            return false;
        });
    };
    

    Now whether the user has javascript disabled or not, the server will receive the form POST in exactly the same way.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm submitting a form using an ajax request (POST method), and checking the HTTP
I want to interrupt and prevent a form from submitting using jQuery. Here's my
i have problem with submitting a form using 2 defferent div(tabs). I want to
I have a very simple scenario where I want to POST the form using
In my application am submiting my form by using post for a php page.
I am getting Error in submitting the form using AJAX and Jquery, following is
I have formatted my form using uniform jquery plugin. Also for submitting the form
I faced the following issue while I submitting my form using jQuery FORM and
Can I validate a form on button click without submitting the whole form using
I am having difficulty using JQuery UI Modal Dialog when submitting a form. The

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.