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?