Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the simple bit of jQuery that adds a class to a paragraph when the value of a hidden input changes to 1:

 $(document).ready(function() {
  if ($("#acf_success_sent").val() == 1){

  $("#acf_verified").addClass('gone');

  }
 });

As far as I know this should work, but as the value only changes briefly, i think the class is only added until the value changes again, so it's not noticeable. How can I get the class to stick.

Many thanks

share|improve this question
What do you mean by "as the value only changes briefly"? the code seems pretty straightforward to me – J.C. Inacio Jun 9 '11 at 11:59
The problem must be elsewhere in your code, as your example would add the class permenantly (unless you are removing it again elsewhere). – James Allardice Jun 9 '11 at 12:01
The hidden value was being generated elsewhere, apologies for not being clear enough. – tcnarss Jun 9 '11 at 12:28

1 Answer

up vote 2 down vote accepted

Your code shouldn't be doing anything, unless the value is 1 on DOM ready (because that's the only time it will check it). If you want it to check the value constantly, change it to an onchange event.

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

 });
share|improve this answer
This seems to be the correct answer however I believe the hidden value is only changing intermittently. The value changes on successful submission of a form. I've contacted the developer. Thanks for your help. – tcnarss Jun 9 '11 at 12:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.