...

Jquery Ajax help

o0O0o.o0O0o
04-24-2008, 01:39 AM
hi,

I am using AJAX with jquery . The basic syntax for displaying a file

redBoxes.php info is below

$('#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


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

shyam
04-24-2008, 04:17 AM
looks like u've answered ur own question or i've misunderstood ur question...

$('#testButton').click(function(){
$.get(
'redBoxes.php',
{a:1, b:2, c:3},
function(data) {
data = parseInt(data);
if(data == 1)
alert("data has displayed"); }
);

whenever redBoxes.php returns 1 you should get an alert in javascript

o0O0o.o0O0o
04-24-2008, 04:29 AM
thanks RadheyShyam


looks like u've answered ur own question or i've misunderstood ur question...
Just one line was missing . i wish if i can thank myself :D

just wanted to know how can find functions like

parseInt i didn't knew they were available or not



EZ Archive Ads Plugin for vBulletin Copyright 2006 Computer Help Forum