MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 4: | Line 4: | ||
var opt = new Option("all", "1500"); | var opt = new Option("all", "1500"); | ||
$(opt).html("all"); | $(opt).html("all"); | ||
$('select | $('label select').append(opt); | ||
} ); | } ); | ||
Revision as of 15:24, 24 April 2023
/* Any JavaScript here will be loaded for all users on every page load. */
$(document).ready( function () {
var opt = new Option("all", "1500");
$(opt).html("all");
$('label select').append(opt);
} );