Common.js: Difference between revisions
From Necroxia Origin
mNo edit summary |
mNo edit summary |
||
| Line 2: | Line 2: | ||
$("#testdiv").each(function() { | $("#testdiv").each(function() { | ||
var inputs = ['currentRoom', 'currentCount', 'answerNumber']; | var inputs = ['currentRoom', 'currentCount', 'answerNumber']; | ||
$.each(inputs, function(_, entry) { | |||
$(this).append("<input type='text' id='" + entry + "'/>"); | |||
}); | }); | ||
$(this).html | $(this).html = "Pan con pelos"; | ||
}); | }); | ||
Revision as of 20:43, 31 August 2020
/* Any JavaScript here will be loaded for all users on every page load. */
$("#testdiv").each(function() {
var inputs = ['currentRoom', 'currentCount', 'answerNumber'];
$.each(inputs, function(_, entry) {
$(this).append("<input type='text' id='" + entry + "'/>");
});
$(this).html = "Pan con pelos";
});