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!
submit, or something else? Think we'll need to see more code. – adam Aug 7 '11 at 14:54