MediaWiki:Common.js: Difference between revisions

From tol2kit for kwan lab
Jump to navigation Jump to search
No edit summary
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
document.addEventListener("DOMContentLoaded", function() {
document.addEventListener("DOMContentLoaded", function() {
    // Get the sidebar element
 
    var sidebar = document.querySelector("#mw-panel");
 
   
// Force all PDF links to open in a new tab
    if (sidebar && !document.querySelector("#p-search")) { // Check if no duplicate search exists
$(document).ready(function() {
        var searchBox = document.createElement("div");
    $('a[href$=".pdf"]').attr('target', '_blank');
        searchBox.id = "p-search";  // Set the ID for the search box
        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 (ensure it's placed in the first portlet)
        var firstPortlet = sidebar.querySelector(".portlet"); // Find the first portlet in the sidebar
        if (firstPortlet) {
            sidebar.insertBefore(searchBox, firstPortlet); // Insert the search box before the first portlet
        }
    }
});
});

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');
});