MediaWiki:Common.js: Difference between revisions

From tol2kit for kwan lab
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
document.addEventListener("DOMContentLoaded", function() {
document.addEventListener("DOMContentLoaded", function() {
    // Ensure the sidebar has a place to insert the search bar
 
    var sidebar = document.querySelector("#mw-panel");  // Get the sidebar
 
    if (sidebar && !document.querySelector("#p-search")) { // Make sure no duplicate search exists
// Force all PDF links to open in a new tab
        var searchBox = document.createElement("div");
$(document).ready(function() {
        searchBox.id = "p-search";  // Unique ID for the search box
    $('a[href$=".pdf"]').attr('target', '_blank');
        searchBox.innerHTML = `
            <form action="/index.php" method="get">
                <input type="hidden" name="title" value="Special:Search">
                <input type="search" name="search" placeholder="Search..." required>
            </form>
        `;
        // Insert the search box into the sidebar (before the first child)
        sidebar.insertBefore(searchBox, sidebar.firstChild);
    }
});
});

Latest revision as of 18:26, 30 May 2025

document.addEventListener("DOMContentLoaded", function() {


// Force all PDF links to open in a new tab
$(document).ready(function() {
    $('a[href$=".pdf"]').attr('target', '_blank');
});