I have an ajax system set up. When the MySQL query returns no data, I need it to pass an empty object back. I create a node called 'data' in the php script and even when the query returns no data I pass $data['success'] = 1.
The trick is I can't figure out how to check to see if the query was returned data or not.
I have tried...
// sub responseObj.data for responseObj.data[0] for the following if's
if(responseObj.data[0].length == -1)
if(responseObj.data[0] == null)
if(responseObj == undefined)
//edit: added this...
if(!responseObj.data[0])
and I've really lost tack of any other various snippet's i've tried.
EDIT: adding xml generated that is passed to my script
XML - returning zero results
<response_myCallbackFunction>
<success>1</success>
<response_myCallbackFunction>
XML - returning a populated query
<response_myCallbackFunction>
<data>
<random_data>this is data</random_data>
</data>
<success>1</success>
<response_myCallbackFunction>
Is there a way to check to see if an object is empty in javascript?
-thanks