I am trying to study the jquery class, but I have a hard time debugging an object because I can't see the element inside of it
$("#birds").autocomplete({
source: "search.php",
select: function (event, ui) {
alert(ui);
}
});
it returns [object Object].. :( My question is how can I alert the object so that I can see the element?
i recommend you use FireBug for debugging javascript. then you can just do
console.log(ui)
and it'll log the object in a form you can expand
Just convert your object to a JSON object using stringfy.
alert(JSON.stringify(yourObjectVariable));
simple as pie :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With