Ubiquity for Mozilla web browser
Ubiquitous Interfaces, Ubiquitous Functionality
Labels: firefox, javascript
Technology notes from an IT/software developer, mostly about the "shiny objects" in the web and software world.
Labels: firefox, javascript
javascript:var x=window.open(document.URL, '_blank','width=800,height=600')
javascript:var%20x=window.open(document.URL,%20'_blank','width=800,height=600
,status=1,toolbar=1,location=1');window.close();
Labels: javascript
<SCRIPT>
function OnLoadFunction(milliseconds_time)
{
setTimeout("delayedOnLoadFunction()", milliseconds_time);
}
function delayedOnLoadFunction()
{
/* Function body */
}
</SCRIPT>
<body onLoad="OnLoadFunction(500)">
Labels: javascript