> I'm sending something like this
> $.post("/scripts/login.php",{u:"USER",p:"PASS",r:"STAY"},function(txt)
> {$("div#"+div).html(txt);});
$.post("/scripts/login.php",
{u:"USER",p:"PASS",r:"STAY"},function(data){
$("#response").append(data).show('fast');
});
create a <div id="response"></div>
try this code and let me know if work.
P.S.: My advice is to use firebug for a better debug detail.
--
Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/
"It's easier to invent the future than to predict it." -- Alan Kay