Last active
February 7, 2018 13:19
-
-
Save abhivaikar/87cd8976cc73b7b2c3465923dad1d596 to your computer and use it in GitHub Desktop.
bookmarklet code for finding stackoverflow questions based on tag
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() { var soBaseURL = "https://stackoverflow.com/questions/tagged/"; var tag = prompt("Questions related to?"); if(tag) {window.open(soBaseURL+tag); } else return })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment