$(document).ready(function ()
{
var ajax;
$('#choice').change(function()
{
if(ajax)
{
ajax.abort();
}
ajax = $.get(
'wait.php',
{ what : $(this).val() },
function(response)
{
$('#response').html(response);
},
'html'
);
});
});
$(document).ready(function ()
{
var ajax;
$('#choice').change(function()
{
if(ajax)
{
ajax.abort();
}
ajax = $.get(
'wait.php',
{ what : $(this).val() },
function(response)
{
$('#response').html(response);
},
'html'
);
});
});