MediaWiki:Minerva.js
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.
/* All JavaScript here will be loaded for users of the MinervaNeue skin */ $(document).ready(function () { var menu = $('#p-navigation'); // Add Categories section menu.append('<li class="menu-section">— CATEGORIES —</li>'); menu.append('<li><a href="/wiki/Animal_cruelty_cases_by_location">By Location/地点</a></li>'); menu.append('<li><a href="/wiki/Animal_cruelty_cases_by_species">By Species/物种</a></li>'); menu.append('<li><a href="/wiki/Animal_cruelty_cases_by_year">By Year/年份</a></li>'); // Add Resources section menu.append('<li class="menu-section">— RESOURCES —</li>'); menu.append('<li><a href="/wiki/Useful_links">Useful links/实用链接</a></li>'); menu.append('<li><a href="/wiki/Documentaries">Documentaries/纪录片</a></li>'); menu.append('<li><a href="/wiki/Psychological_study">Psychological study/心理研究</a></li>'); });