Hi
Code sinppet on home page
http://code.google.com/apis/ajaxlibs/,
has this line
if (data.responseData.results && data.responseData.results > 0)
Was able to understand the first part of it but not the next ?!!
Array Object Object being compared with a zero ?!!
shouldnt it have been like
if ( data.responseData.results
&& data.responseData.results.length
&& data.responseData.results.length > 0)
though not very sure !!!