Skip to content

Challenge Bring Your JavaScript Slot Machine To Life

Quincy Larson edited this page Aug 20, 2016 · 1 revision

Challenge Bring your JavaScript Slot Machine to Life

Let's use the jQuery selector $(".slot") to select all of the slots.

Once they are all selected, we can use bracket notation to access each individual slot:

$($(".slot")[0]).html(slotOne);
$($(".slot")[1]).html(slotTwo);
$($(".slot")[2]).html(slotThree);
Clone this wiki locally