Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>';
share|improve this question
Which version of IE? – minitech Jan 23 '12 at 0:37
4  
Oh, and always pass a function to setTimeout - never a string. – minitech Jan 23 '12 at 0:37
Oh, and escape escapes URLs, not JavaScript special string characters. All the more reason to use a function. – minitech Jan 23 '12 at 0:38
IE8. I'm still learning ajax and got most of this script from a tutorial online. Thanks for the tips. – Stewie Jan 23 '12 at 0:42
Give the setTimeout change a try; it might fix the problem, actually. – minitech Jan 23 '12 at 0:55
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.