Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sandeepthukral/b9e938865a7866628d8b1a3519d5692f to your computer and use it in GitHub Desktop.
Save sandeepthukral/b9e938865a7866628d8b1a3519d5692f to your computer and use it in GitHub Desktop.
Bookmarklet to open information page for any Dutch verb
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