Possible duplicate:
What does script-tag mean with src and content?
I was just browsing this page on how to implement the Googles +1 button. When one implementation (parsing) showed, among other things, this code:
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"> {parsetags: 'explicit'} </script>
To me, this looks like a completely anonymous object, but I could be wrong.
If so, how can one access this seemingly anonymous object? After writing this question, I suddenly realized that maybe this can be done with DOM parsing, but it seems pretty funny.
So is this an anonymous object? And if so, how is this anonymous object used? Is this some familiar technique that I donβt know about?
Or am I just completely misinterpreting the code, and isn't this an anonymous object?
source share