मीडियाविकि:Common.js
ध्यान दें: प्रकाशित करने के बाद बदलाव देखने के लिए आपको अपने ब्राउज़र के कैश को हटाना पड़ सकता है।
- Firefox/Safari: Reload क्लिक समय Shift दबाएँ, या फिर Ctrl-F5 या Ctrl-R दबाएँ (Mac पर ⌘-R)
- Google Chrome: Ctrl-Shift-R दबाएँ (Mac पर ⌘-Shift-R)
- Internet Explorer/Edge: Refresh पर क्लिक करते समय Ctrl दबाएँ, या Ctrl-F5 दबाएँ
- Opera: Ctrl-F5 दबाएँ।
/* यहाँ दी गई जावास्क्रिप्ट सभी सदस्यों के लिए हमेशा लोड की जाएगी */ $(document).ready(function() { var currentDomain = window.location.hostname; var currentPath = window.location.pathname; var currentTitle = mw.config.get('wgPageName'); var englishDomain = 'arisepedia.com'; var hindiDomain = 'hi.arisepedia.com'; var switcherHtml = '<div id="language-switcher" style="position: fixed; top: 10px; right: 10px; z-index: 1000;">' + '<a href="https://' + englishDomain + currentPath + '" style="margin-right: 10px; padding: 5px 10px; background-color: #f8f9fa; border: 1px solid #a2a9b1; border-radius: 3px; color: #202122; text-decoration: none;">English</a>' + '<a href="https://' + hindiDomain + currentPath + '" style="padding: 5px 10px; background-color: #f8f9fa; border: 1px solid #a2a9b1; border-radius: 3px; color: #202122; text-decoration: none;">हिन्दी</a>' + '</div>'; $('body').append(switcherHtml); });