Created
December 17, 2019 09:07
-
-
Save sandeepthukral/b9e938865a7866628d8b1a3519d5692f to your computer and use it in GitHub Desktop.
Bookmarklet to open information page for any Dutch verb
This file contains 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 prefix = "https://nl.wiktionary.org/wiki/"; | |
var suffix = "/vervoeging"; | |
var woord = prompt("Welk woord zoek je informatie over?", "leggen"); | |
if (woord != null) { | |
loc = prefix + woord.trim() + suffix; | |
location.href = loc; | |
} | |
} | |
)(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment