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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:26:44+00:00 2026-05-23T22:26:44+00:00

So I have a form that’s giving me two issues. 1. When I click

  • 0

So I have a form that’s giving me two issues.

1. When I click the submit button once, the validation message is triggered (good), but the text color of the place holder does not change as it should, if I click it twice, it changes perfectly. I need to have it change on the first time, as long as there is an error, it should change.

2. Say you put any value for name, for example, the letter e, then hit submit twice, the placeholder text goes over what was typed. I need to have no placeholder show up over the text, since there is a value there.

Here is the fiddle I have http://jsfiddle.net/Lqb6q/

Any idea how to fix 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-05-23T22:26:46+00:00Added an answer on May 23, 2026 at 10:26 pm

    The problem is that you are listening for a click event, instead you should be listening for a submit event.

    Change this:

    $('#submit-ticket').click(function() {
    if($('input').hasClass('error')) {
    $("label.overlabel-apply").css('cssText', 'color: red !important');
    }
    });
    

    to this:

    $('#ticket-form').submit(function() {
        if($('input').hasClass('error')) {
            $("label.overlabel-apply").css('cssText', 'color: red !important');
        }
        $('input').each(function(){
            if($(this).val().length){
                hideLabel($(this).attr('id'), true);
            }
        });
    });
    

    See it in action.

    • 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 when my users click submit, I first want to
I have a form that uses jQuery to submit an ajax post and it
I have a form that has two field (time_selects), the idea is that the
I have a form that once you select from a drop-down list and select
I have a form that is using jQuery Validate plugin for client side validation,
I have a form that i am trying to submit after the page loads
I have a form that has two views. These views are controlled by radio
I have a form that validates using the jQuery plugin: Validation, v1.9.0. The validation
I navigated to a website with a form that has no submit button but
I have a form that I want to submit when the user presses 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.