Skip to content

Instantly share code, notes, and snippets.

View darwinp's full-sized avatar

Darwin Peltan darwinp

  • Pilot Works
  • Bristol, UK
View GitHub Profile
@darwinp
darwinp / gist:d9b39cdd356b4d12411d8c553dd8100b
Created May 30, 2016 20:45
Jump to node Bookmarklet skeleton
// Full Code
javascript:(function loadPage (){
var url = 'https://example.com/node/';
var nodeID = prompt("Node ID:", '');
// Did you enter a value and is that value a number?
if (nodeID != null && ( !isNaN(parseFloat(nodeID)) && isFinite(nodeID) )) {
window.location.href= url + nodeID;
}
})();