UWA is the new Netvibes API. Through it, your Netvibes widgets will be available on every widget platforms or blog systems: Netvibes of course, but also Google IG, Apple Dashboard and many more...
Cool, but there is a little problem. UWA API don't support window and document object. No way it can't be ... aha! there is a solution :)
Script tag:
= function(window) {
onLoadPlus var content = "URL: "+window.document.URL;
+= "Location: "+window.location;
content += "Title: "+window.document.title;
content .setBody(content);
widget
}
.onLoad = function() {
widget.body.getElementsByTagName("a")[0].onclick()
widget }
Body tag:
<a style="display:none" onclick="onLoadPlus(window)"></a>
This example works only with netvibes, with google window point to iframe :/
Check out example module here.