Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5.
$(document).ready(function() { document.getElementById("af").addEventListener("click", function() { window.top.location.href='/w/Africa' }); document.getElementById("as").addEventListener("click", function() { window.top.location.href='/w/Asia' }); document.getElementById("oc").addEventListener("click", function() { window.top.location.href='/w/Oceania' }); document.getElementById("eu").addEventListener("click", function() { window.top.location.href='/w/Europe' }); document.getElementById("sa").addEventListener("click", function() { window.top.location.href='/w/South_America' }); document.getElementById("na").addEventListener("click", function() { window.top.location.href='/w/North_America' }); });