jira-card-printer/bookmarkletLoader.js
2015-01-23 13:52:08 +01:00

9 lines
306 B
JavaScript

// tested for Chrome, IE
javascript:(function(){
var head = document.getElementsByTagName("head")[0];
var scriptElement = document.createElement("script");
scriptElement.src = <URL to Script>;
head.appendChild(scriptElement);
head.removeChild(scriptElement);
})();