Еще пробовал вот такой скрипт, он тоже не работает:
function someRequest(value)
{
jQuery.ajax
({
url: 'tasks.php',
type: 'post',
data:
{
TextField1: value
},
complete: function(xmlhttp, textStatus)
{
if(xmlhttp.status == 200)
{
alert(xmlhttp.responseText);
return true;
}
else
{
return false;
}
}
});
return false;
}