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 3308980
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T21:35:09+00:00 2026-05-17T21:35:09+00:00

Is there a way when using jQuery.Post to discover the content-type of the response?

  • 0

Is there a way when using jQuery.Post to discover the content-type of the response?

I have a form in a modal window and the idea is that if the form is not valid then an HTML snippet is sent and the contents of the modal are replaced with this snippet, if it is valid I want a simple string with the content for a flash notification (of the type used here on SO).

Currently I am testing if the returned string begins with “success” and if so using the rest of the string as the flash notification. This is obviously quite a hacky solution and I really don’t like it.

Ideally I’d like to be able to have a conditional on the response and if it is “text/html” then insert the snippet, if it is “application/JSON” then I can not only send a message for the helper but potentially other data (message, id, more specific type of success/fail message etc) that would be helpful for extending to other forms in the future.

  • 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-05-17T21:35:09+00:00Added an answer on May 17, 2026 at 9:35 pm

    jQuery will already detect and convert the response based on the content type header (if no type is specified on the $.ajax() call). For example: if it finds "json" in the content-type header, it’ll be an object. You can just do this:

    $.post("myPage.html", { name: "value" }, function(data) {
      if(typeof(data) === "string") {
        //html
      } else {
        //JSON
      }
    });
    

    Or, always pass back JSON, and have the notification message as a property on it, for example:

    $.post("myPage.html", { name: "value" }, function(data) {
      if(data.notification) {
        showMessage(data.notification);
      } else {
        //use the data object
      }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that gets submitted using jQuery's .post(). In the corresponding view
Is there a way using JQuery that i can detect when a div starts
Is there any way to disable entire form using jQuery after submission?
Using jQuery, is there a way to select all tag that reference a specific
Using jQuery, is there a way to disable the click sound in IE that
Is there a way, using jQuery, to force a form to wait until a
Is there a way to DRY this jQuery up? <script type=text/javascript> $('form input#search').watermark('search...'); </script>
I have a form that uses a JQuery Json post. I have 10+ textboxes
Is there a way to clone HTML elements using JQuery? However, I want to
Is there a way to nest drag/dropables using jquery ui, without knowing how deep

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.