This ajax function should post to ajax_model.php and get the results as options for another select list. It works fine in Chrome, but not in IE. The fadeOut() works, as well as the fadeIn() in the finishAjax() function. It's just not populating the second select list.
Here's the code:
//Function to select models based on make
$('#make').change(function () {
$('#model').fadeOut();
$.post("ajax/ajax_model.php", {
make: $('#make').val()
}, function (response) {
setTimeout("finishAjax('model', '" + escape(response) + "')", 400);
});
return false;
});
function finishAjax(id, response) {
$('#' + id).html(unescape(response));
$('#' + id).fadeIn();
}
And here's the ajax_model.php file:
require_once ".././lib/stdlib.php";
$db1 = new db('palm_sales');
if(!empty($_POST['make']))
{
$make = $_POST['make'];
$option .= '<option value="NULL"></option>';
$q = "SELECT id, model FROM model WHERE make = '$make' ORDER BY model ASC";
$db1->runQuery($q);
while($db1->nextRow())
{
$option .= '<option value="' . $db1->record['id'] . '">' . $db1->record['model'] . '</option>';
}
echo "<option value='TESTING'>TESTING</option>";
echo $option;
}
else echo '<option value="">---ERROR---</option>';
setTimeout- never a string. – minitech♦ Jan 23 '12 at 0:37escapeescapes URLs, not JavaScript special string characters. All the more reason to use a function. – minitech♦ Jan 23 '12 at 0:38setTimeoutchange a try; it might fix the problem, actually. – minitech♦ Jan 23 '12 at 0:55