Вот jquery для вызова функции ajax:
function sendAjax(type, succ){ //where succ is the success callback
if (type=="")
{
$("#txtResp").empty();
return;
}
if(succ === undefined) { succ = null; }
switch(type)
{
case 'run':
$.ajax({type:"GET",
url: "start_mess.php",
data: "q="+type,
success: succ
});
break;
}
}
Вот содержимое страницы index.html:
function initialLoad()
{
sendAjax('run')
$("#txtResp").html(responseText);
}
initialLoad();
Вот страница PHP:
echo $_GET['q'];
$q = $_GET['q'];
Любая идея, почему это не работает?Спасибо!
Тейлор