How to see Last.fm from the other side of the room with LastJS March 2nd, 2008
Proof of concept, more than anything else: how to hook up to a recalcitrant Flash-based interface.
Garbage collection, in a very real sense
Proof of concept, more than anything else: how to hook up to a recalcitrant Flash-based interface.
As the natural extension of Gareth Rushgrove’s bookmarklets for inserting the Dojo or YUI Javascript toolkits mentioned by Simon, here’s a tidying-up of a bookmarklet I’ve been using to bring in any Javascript using user input via a popup prompt:
Insert-JS bookmarklet
javascript:void(function(){
var%20s=document.createElement("script");
s.src=prompt("Full%20URL:");
document.getElementsByTagName("head")[0].appendChild(s);
}())
I was originally appending it to the body as an invisible div, making use of [...]