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 two problems with my jQuery codes.

The first one is the following:

var serialized = $("#tuitting_form").serialize()
$.post("tuitting/send_updates.php", serialized,

function(data){ //etc...

It works only the first time. But since the fields and checkboxes in #tuitting_form are not static, but they can be changed with AJAX without page refresh, it cause that the serialize function will not recognize anymore the fields and checkboxes unless I refresh the page.. How can I avoid this issue?

I need a way to always check the changes in the #tuitting_form before running the serialize function WITHOUT refreshing the page at all.

Second issue is with this code..the delay is not working:

$("#datepicker").addClass("highlightError").delay(5000).removeClass("highlightError");

Can you help me with both?

The first issue is extremely important for me!! Thanks!

share|improve this question
What event are you using to post the form? submit, or something else? Think we'll need to see more code. – adam Aug 7 '11 at 14:54
I am using a .click function $("#send_message").click(function(){ – DiegoP. Aug 7 '11 at 14:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.