Actions

MediaWiki

Common.js: Difference between revisions

From Necroxia Origin

mNo edit summary
mNo edit summary
Line 3: Line 3:
var parent = $(this);
var parent = $(this);
var inputs = ['currentRoom', 'currentCount', 'answerNumber'];
var inputs = ['currentRoom', 'currentCount', 'answerNumber'];
$.each(inputs, function(_, entry) {
for (i = 0; i < inputs.length; i++) {
parent.append("<input type='text' id='" + entry + "'/>");
$(this).append("<input type='text' id='" + entry + "'/>");
});
}


$(this).html("Pan con pollo");
$(this).html("Pan con pollo");
});
});

Revision as of 06:47, 1 September 2020

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

	$(this).html("Pan con pollo");
});