Actions

MediaWiki

Common.js: Difference between revisions

From Necroxia Origin

mNo edit summary
mNo edit summary
Line 1: Line 1:
/* Any JavaScript here will be loaded for all users on every page load. */
/* Any JavaScript here will be loaded for all users on every page load. */
$("#testdiv").each(function() {
$("#testdiv").each(function() {
alert("Wassup bro!");
$(this).html('pan con pollos');
});
});

Revision as of 06:40, 1 September 2020

/* Any JavaScript here will be loaded for all users on every page load. */
$("#testdiv").each(function() {
	$(this).html('pan con pollos');
});