Tagged Questions
6
votes
1answer
83 views
Is this a completely anonymous object… if so, how do you access it? [closed]
Possible Duplicate:
What does a script-Tag with src AND content mean?
I was just viewing this page, on how to implements Googles +1 button. When one implementation (parse explicit) showed, ...
0
votes
4answers
2k views
JavaScript check if anonymous object has a method
How can I check if an anonymous object that was created as such:
var myObj = {
prop1: 'no',
prop2: function () { return false; }
}
does indeed have a prop2 ...
-3
votes
1answer
214 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 ...