vote up 1 vote down star
1

I'm working on a bookmarklet, and thought I'd throw down a challenge: how to inject an external javascript file from a link in as few characters as possible.

Here's the shortest I was able to come up with:

javascript:(function(d){d.body.appendChild(d.createElement('script')).src='URL'})(document)

That's 88 characters without the URL.

Can the Stack Overflow javascript gurus here do better? I'll be accepting the working answer with the fewest characters, so put on your thinking caps!

(One thing: the bookmarklet must work in all major browsers. This is a clever solution, but doesn't work in all major browsers, because it returns a value.)

flag
When you say ALL browsers do you mean the big 3 (Firefox, IE, Safari) or do you mean ALL browsers. – Lucas McCoy May 11 at 23:04
How about all of those supported by the latest jQuery? From their site: IE 6.0+, FF 2+, Safari 3.0+, Opera 9.0+, Chrome – Jed Schmidt May 11 at 23:07

3 Answers

vote up 0 vote down check

Assuming that String.prototype isn't contaminated, we can save some chars.

javascript:with(document)(body.appendChild(createElement('script')).src='URL')._
link|flag
ha, that's clever! – Jed Schmidt Jun 10 at 2:47
vote up 4 vote down

I'm not sure why you're wrapping this in a function enclosure — it seems to work perfectly well without and is almost a dozen characters shorter:

javascript:void(document.body.appendChild(document.createElement('script')).src='URL')

Aside from that, however, your implementation looks pretty minimalist.

link|flag
This is why: subsimple.com/bookmarklets/rules.asp#ReturnValues/… This approach will return the URL, so it won't work in some browsers. – Jed Schmidt May 11 at 23:33
I see, fixed. Still shorter, though not by as much. :-) – Ben Blank May 11 at 23:54
vote up 5 vote down
javascript:void(with(document)body.appendChild(createElement('script')).src='URL')

79 characters. Credit to Ben Blank for the use of void.

link|flag
but you're using with, which is frowned on in some circles. – antony.trupe Jun 4 at 5:07
Well, being that the only scope of this code is a bookmarklet, I don't think the usual reasons to avoid it apply. – Jed Schmidt Jun 4 at 16:00
Most things are frowned on in some circles. For example, some people frown upon IF, saying that GOTOs were much simpler. They are, of course, completely wrong. :-) – Lucas Jones Jun 9 at 18:11
Never use with, unless your scope is pretty simple. In this case, it's OK. – EndangeredMassa Jun 9 at 18:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.