With in-page script tags I normally do:
script src="js/all.2011_02_02.js"
That way the browser fetches the latest version when I update the script source url and keeps it in cache.
Well, how can I accomplish that with a bookmarklet which I can“t edit (unless I ask the user to delete/create new)?
sample bookmarklet:
javascript:(function(){document.body.appendChild(document.createElement('script')).src='http://example.com/js/all.js;})()