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

  • Home
  • SEARCH
  • 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 77933
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T20:54:29+00:00 2026-05-10T20:54:29+00:00

I found strange bug (maybe). When I send parameters to $.ajax in a form

  • 0

I found strange bug (maybe). When I send parameters to $.ajax in a form of hash, and tried to check that params in $.ajaxSend, I found that settings.data is null, settings.url was normal with parameters included. Then I look inside jQuery code, and found that data erased.

    // If data is available, append data to url for get requests     if ( s.data && type == 'GET' ) {         s.url += (s.url.match(/\?/) ? '&' : '?') + s.data;          // IE likes to send both get and post data, prevent this         s.data = null;     } 

Now I am in need of parsing url ((. What to do?

In JQuery, using ajaxSend to preview the url built by $.post call

Here in comments I see that data should be there.

  • 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. 2026-05-10T20:54:29+00:00Added an answer on May 10, 2026 at 8:54 pm

    By default anything passed as data that is not a String is processed and transformed into a query string. So, if you use POST to skip the bug:

     $.post({       url: 'http://yourserver/ajax' ,       data: {param1: 'val1', param2:'val2'}  }); 

    in $.ajaxSend the value of settings.data will be 'param1=val1&param2=val2' and you will need to parse the parameters, like with GET.

    If you want to avoid parsing the url or data just add a copy of the data when building the settings object. The extra parameter should not cause any problem.

     var data = {param1: 'val1', param2:'val2'};  $.get({       url: 'http://yourserver/ajax' ,       data: data,       dataCopy: data  }); 

    Then, in $.ajaxSend you can check the values in settings.dataCopy.

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

Sidebar

Ask A Question

Stats

  • Questions 104k
  • Answers 104k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You need to compare the div height with the scrollTop… May 11, 2026 at 8:35 pm
  • Editorial Team
    Editorial Team added an answer I had a similar problem with a webservice we had… May 11, 2026 at 8:35 pm
  • Editorial Team
    Editorial Team added an answer To print the values of the variables as they loop… May 11, 2026 at 8:35 pm

Related Questions

I need an accurate timer to interface a Windows application to a piece of
For my Programming 102 class we are asked to deliver C code that compiles
after doing some test-code for this link : Is it safe to call temporary
I found a bug in the Contains statement in Linq (not sure if it

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.