Common.js: Difference between revisions
From Necroxia Origin
(Created page with "→Any JavaScript here will be loaded for all users on every page load.: $(function () { $('#testdiv').html('pan con pollos'); }());") |
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. */ | ||
$(function () { | $("#testdiv").each(function() { | ||
$( | const inputs = ['currentRoom', 'currentCount', 'answerNumber']; | ||
}()); | inputs.forEach(function(entry) { | ||
var input = document.createElement("INPUT"); | |||
input.setAttribute("type", "text"); | |||
input.setAttribute("id", entry); | |||
$(this).appendChild(input); | |||
}); | |||
$(this).html = "Pan con pelos"; | |||
}); |
Revision as of 06:36, 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) { var input = document.createElement("INPUT"); input.setAttribute("type", "text"); input.setAttribute("id", entry); $(this).appendChild(input); }); $(this).html = "Pan con pelos"; });