value not posting to php script

Posted by user3710364 on Stack Overflow See other posts from Stack Overflow or by user3710364
Published on 2014-06-05T09:23:15Z Indexed on 2014/06/05 9:24 UTC
Read the original article Hit count: 122

Filed under:
|
|

step1 batch in dynamically loaded after selecting one of the value from dropdown step 2 is loaded by ajax call in setp 2 when i click on edit step 3 is loaded via ajax call again in step 3 when i click on edit ajax call is working fine but its nit posting the value to php script

             //ajax call
             function validateFees(strAddNo) {  

          var collectFees = $("#collectFees").val();
          if(collectFees == "")
{
    $("#validateFeesResult").html('<div class="info">Please enter your Fees Amount.</div>');
    $("#collectFees").focus();
}

else
{
    var dataString = 'collectFees' + collectFees + 'strAddNo' + strAddNo;
    $.ajax({
        type: "POST",
        url: "validateFees_script.php",
        data: dataString,           
        cache: false,
        beforeSend: function() 
        {
            $("#validateFeesResult").html('Loading...');
        },
        success: function(response)
        {
            $("#validateFeesResult").hide().fadeIn('slow').html(response);
        }
    });
}

}

I'm sure it's extremely simple but I'm not understanding how to do it?

© Stack Overflow or respective owner

Related posts about php

Related posts about jQuery