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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T02:28:40+00:00 2026-05-23T02:28:40+00:00

I have a contact form that sends a value to a hidden input on

  • 0

I have a contact form that sends a value to a hidden input on successful completion of the sendmail function. I want to detect this value change and then use it to apply a class to a div/paragraph.

I asked a similar question recently and I’m aware that this requires the script to continually check the doc after DOM is loaded but even after adding .change() it just doesn’t seem to want to add the class.

Here’s the jQuery:

$(document).ready(function() {
   $("#acf_success_sent").change(function(){
    if ($("#acf_success_sent").val() == "1"){
     $("#acf_verified").addClass('gone');
     }
   });

 });

any help would be great. here’s a link to a test version of form in case you’re interested, everything works except the verified symbol doesn’t disappear after a successful send http://seeshell.me/forms/contact.php

  • 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-23T02:28:41+00:00Added an answer on May 23, 2026 at 2:28 am

    There’ll be no “change” event fired when code updates the value of your <input> element, so the handler you’ve registered won’t run. What you could do however is fire “change” from a watchdog:

    var watchdog = setInterval(function() {
      if ($('#acf_success_sent').val() !== originalValue)
        $('#acf_success_sent').trigger('change');
    }, 100);
    

    How you set up “originalValue” depends on your application. You could, for example, keep a separate “.data()” value, and watch for whenever your saved value differs from the current “value” attribute. Or you could keep the value in a closure variable:

    var watchdog = (function() {
      var $acfSuccessSent = $('#acf_success_sent'), cachedValue = $acfSuccessSent.val();
      return function() {
        if (cachedValue !== $acfSuccessSent.val())
          $acfSuccessSent.trigger('change');
      };
    })();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a contact form that can be hidden using .slideToggle() but I want
I have a simple contact form with Subject and Message that I want to
The basics: I have a contact form that uses php to validate the forms.
I have a contact us form that uses Ajax (i.e. relies on asynchronous requests).
i have a PHP contact form that submits data, and an email...: <?php $dbh=mysql_connect
I have an Ajax contact form that links to a jquery file but for
i have bought a template that have built in contact form problem is that
I have a contact form i want to use Ajax for. My contact.php script
I have a form that sends out a notification when a client fills out
I have one contact form, that send the email to one of Address selected

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.