MediaWiki:Common.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)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
function openModal(entryNumber) { // You can replace this with your logic to fetch and display data fetchData(entryNumber) .then(function(data) { // Display data in the modal document.getElementById('modalContent').innerHTML = data; // Show the modal document.getElementById('myModal').style.display = 'block'; }) .catch(function(error) { console.error('Error fetching data:', error); }); } function closeModal() { // Hide the modal document.getElementById('myModal').style.display = 'none'; } // Replace this function with your actual logic to fetch data function fetchData(entryNumber) { // Dummy data for demonstration var dummyData = '<h2>Card ' + entryNumber + '</h2><p>This is some information about Card ' + entryNumber + '.</p>'; return Promise.resolve(dummyData); }