Skip to content

Instantly share code, notes, and snippets.

@owenjones
Last active November 30, 2016 17:47
Show Gist options
  • Save owenjones/d9331e8caf853240e4f8537d3b92dc8c to your computer and use it in GitHub Desktop.
Save owenjones/d9331e8caf853240e4f8537d3b92dc8c to your computer and use it in GitHub Desktop.
IEEExplore Institutional Login Bookmarklet
javascript:(function(){
if(window.location.href.indexOf("ieeexplore.ieee.org") > 0) {
var loc = encodeURIComponent(window.location.href);
var shib = encodeURIComponent("https://idp.bris.ac.uk/shibboleth");
var next = "http://ieeexplore.ieee.org/servlet/wayf.jsp?entityId=" + shib + "&url=" + loc;
window.location.href = next;
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment