Users Pricing

forum

home / developersection / forums / jquery ajax - json or text

Jquery AJAX - JSON or TEXT

Anonymous User 3183 20 Jun 2013
Hi Developers,

I'm trying to retrieve the TEXT from the getsku javascript after submitting but not sure how to really do it. 

1) How do i retrieve the POST data?

2) How do i retrieve and post it back , if i have multiple varaible to pass back (Datatype:text)

3) When should i use JSON, and when text.

4) If i'm using JSON how do i read it(after javascript) and display it(returned data to javascript).

javascript in main page

 function getsku(){

$.ajax({
    type: "POST",
    url: "funcAjax.php",
    data: { 'ddl1': $("#drop_1").val(), 'ddl2': $("#tier_two").val() },
    dataType: 'text', 
    success: function(data) {
        $("#sku").val(data);
    },
    complete: function() {
        alert('Complete: Do something.');
    },
    error: function() {
        alert('Error: Do something.');
        }
});
}

Button

<input type="button" value="Get SKU" onclick="getsku();" >

Trying to retrieve from another php and return a data to the above php(Having Issues here)

if(isset($_REQUEST['ddl1'])) { 
echo "FOUND1";
}else{
echo "FOUND2";
}

Thanks in advance for any recommendations or solutions.

I am a content writter !


1 Answers