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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:48:05+00:00 2026-05-11T17:48:05+00:00

I have a JSP which has jQuery and wanted to change the action message

  • 0

I have a JSP which has jQuery and wanted to change the action message CSS on successful submit.

So I have a page that a user enters info into, hits submit and then a span tag with the class actionMessage or actionError displays at the top of the page (After submit). Wanted to know if I could check for the element after page submit and add some CSS to make it display the way I would like it to.

<span class="actionMessage">Yeah all go!</span>

or

<span class="actionError">Try again I didn't like that :(</span>

Thanks

  • 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-11T17:48:05+00:00Added an answer on May 11, 2026 at 5:48 pm

    You can use the submit event to handle the form submission.

    $("form").submit(function () {
      if (/* form_is_valid */) {
        $(".actionMessage").show();
        $(".actionError").hide();
        return true; // Send the request to the server.
      } else {
        $(".actionError").show();
        $(".actionMessage").hide();
        return false;  // Do not send the request.
      }
    });
    

    Your message elements should be hidden by default:

    .actionMessage, .actionError {
      display: none;
    }
    

    If you don’t want to send the request to the server even if the request is valid, you can return false from the submit event handler in this case too.

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

Sidebar

Related Questions

I have a page in JSP, which has a tag like: <img src=images/1.bmp></img> The
Right now I have a JSP page that allows to sort some items, when
I'm generating a page using jsp, it has a list element which shows a
I have a JSP page which loads another jsp page's content which is working
I have a short jsp page that tries to establish the connection to the
I have a JSP which attaches a XSL to an XML document pulled from
I have a web application (Java, Websphere, JSP) which allows co-workers to register visitors
We have the usual web.xml for our web application which includes some jsp and
I have a jsp page with two radio tags. The page contains a struts2
I have a JSP that is using Spring:form tags to bind controls to a

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.