Actions

MediaWiki

Common.js: Difference between revisions

From Necroxia Origin

mNo edit summary
mNo edit summary
Line 3: Line 3:
const inputs = ['currentRoom', 'currentCount', 'answerNumber'];
const inputs = ['currentRoom', 'currentCount', 'answerNumber'];
inputs.forEach(function(entry) {
inputs.forEach(function(entry) {
var input = document.createElement("INPUT");
$(this).append("<input type='text' id='" + entry + "'/>");
input.setAttribute("type", "text");
input.setAttribute("id", entry);
$(this).appendChild(input);
});
});


$(this).html = "Pan con pelos";
$(this).html = "Pan con pelos";
});
});

Revision as of 06:38, 1 September 2020

/* Any JavaScript here will be loaded for all users on every page load. */
$("#testdiv").each(function() {
	const inputs = ['currentRoom', 'currentCount', 'answerNumber'];
	inputs.forEach(function(entry) {
		$(this).append("<input type='text' id='" + entry + "'/>");
	});

	$(this).html = "Pan con pelos";
});