MediaWiki:Common.js: Difference between revisions

From BibleVerseWiki
No edit summary
Tag: Manual revert
No edit summary
Line 2: Line 2:
$(function () {
$(function () {
$("[name=search]").on("keyup", function(event){
$("[name=search]").on("keyup", function(event){
debugger;
alert("hey");
alert("hey");
});
});
});
});

Revision as of 18:08, 15 January 2024

/* Any JavaScript here will be loaded for all users on every page load. */
$(function () {
	$("[name=search]").on("keyup", function(event){
		debugger;
		alert("hey");
	});
});