hi,
I am using AJAX with jquery . The basic syntax for displaying a file
redBoxes.php info is below
PHP Code:
$('#testButton').click(function(){
$.get(
'redBoxes.php',
{a:1, b:2, c:3},
function(data) { alert(data); }
);
Now i want to know how to return variable through jquery e,g
i have inserted data in database and in the php script i am returing value 1 which signifies that data has been inserted in database . How can compare that value . something like
PHP Code:
if(data == 1)
alert("data has displayed")
I can display that text in php file as well , but i want to know how can i work on the return data