In my form I have a text field that has data such as >2012-01-01 <2012-02-01 but when I serialize the form and post the data the field only has the >2012-01-01 and not the <2012-02-01.
Where did it go?
$("#grouppositionsform").live("submit",function(e){ e.preventDefault(); $('body').addClass('wait'); $.post("/page.php",$(this).serialize(), function(data){ $('.showdirectory').fadeOut('slow', function() { $(".showdirectory").html(data); $(".showdirectory").fadeIn("slow"); }); }).error(function() { //alert("error"); }).complete(function() { //alert("complete"); $('body').removeClass('wait'); }); });