MediaWiki:Common.js: Difference between revisions

From BibleVerseWiki
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 2: Line 2:
var current_search;
var current_search;


$(() => {
$(function() {
//$("[name=search]").on("click", () => alert("hey"));
    console.log( "ready!" );
});
});

Revision as of 01:23, 29 April 2024

/* Any JavaScript here will be loaded for all users on every page load. */
var current_search;

$(function() {
    console.log( "ready!" );
});