Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I load an external Javascript file using a bookmarklet? This would overcome the URL length limitations of IE and generally keep things cleaner.

share|improve this question

2 Answers

up vote 50 down vote accepted

Use a bookmarklet that creates a script tag which includes your external JS.

As a sample:

javascript:(function(){document.body.appendChild(document.createElement('script')).src='** your external file URL here **';})();
share|improve this answer
Just wondering, why is it wrapped in a function call, as opposed to just having: javascript:document.body.appendChild(document.createElement('script')).src='** your external file URL here **'; – Mark F Dec 12 '10 at 18:34
9  
Try and see! Leaving it as javascript:a=b will leave you with a page saying 'b'. This will happen unless you void your code either by placing it inside a function that returns nothing or by passing it to void(...). – Miguel Ventura Dec 13 '10 at 12:37
Also, if the original page uses a global variable a, your a=b will not overwrite it, when you have it in a function – nico gawenda Jan 29 at 8:02

Shorter version of Miguel Ventura’s answer

javascript:document.body.appendChild(document.createElement("script")).src="http://foo.com/bar.js";void(0)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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