Using js client v2 or v3, the search callback does not execute. I'm testing on IE9 via browserstack.com. Live search can be found at http://mytennislessons.com/search?q=Austin
I only have access to Firebug Lite in browserstack, but with that, I don't see any js exceptions. Any ideas?
Relevant snippet
index.search('',
{ aroundLatLng: coordinates, aroundRadius: 32187, getRankingInfo: 1,
hitsPerPage: self.perPage
},
searchCallback
);
function searchCallback(err, content) {
alert('searchCallback'); // not executed
}