Posts by user244423 • 10 points
2 posts
-
-2
votes1
answer29
viewsA: Problem with Alert
$('#container > button').click(function () { alert($(this).text()); }); By making the call of this method, you are creating a Event Listener on all buttons that are children of the #container. As…
-
-1
votes1
answer25
viewsA: Convert Nodelist to String(?) / Capturing Checkbox values (javascript)
You can "spread" (spread) eternal objects like Arrays and Nodelists with the operator .... When you use this operator, each item of the iterable object is passed as a different variable to a…