Tagged Questions

-3
votes
1answer
218 views

How can I access the properties of an anonymous object?

$.post("test.php", { name: "John", time: "2pm" }, function(data){ alert("Data Loaded: " + data); }); The object { name: "John", time: "2pm" } is anonymous. Normally, I would access the ...