function register()
{
hideshow('loading',1);
error(0);
$.ajax({type: "POST",
url: "submit.php",
data: $('#regForm').serialize(),
dataType:"json",
success: function(msg){
if(parseInt(msg.status)==1)
{
noreg();
hideshow('loading',0);
}
else if(msg.status==0)
{
error(1,msg.txt);
}
hideshow('loading',0);
}
});
}
Данный скрипт работает только в jquery 1.3.2 а в других нет почему ????