I'm trying to get the results of a search page with an ajax ansync get
$.get('http://www.dmv.org/ca-california/auto-insurance-results.php?zip=90210', function (data) {
var results = $('.ZD_9_Middlefull_centerno_blue_bar .ZD_9_Middlefull_centerno_blue_bar', $(data));
results = results.html();
console.log(results);
});
is works great everywhere (ie10, ie8, chrome, safari) except ie9 and firefox. In these two browsers The page is returned but with no results. I'm pretty new to ajax so at a bit of a loss on what to try next.
any ideas are greatly appreciated
(ps: yes that selector is weird it's my only choice)