Last active
November 30, 2016 17:47
-
-
Save owenjones/d9331e8caf853240e4f8537d3b92dc8c to your computer and use it in GitHub Desktop.
IEEExplore Institutional Login Bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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