Added a more specific example

This commit is contained in:
benmcmahon100
2015-08-13 21:25:31 +01:00
parent 299405694b
commit 095552dbbe

View File

@ -1386,7 +1386,7 @@
"Now we can detect a win let's get the slot machine to look like it works", "Now we can detect a win let's get the slot machine to look like it works",
"We're going to use the jQuery selector <code>$('.slot')</code> to select all of the slots", "We're going to use the jQuery selector <code>$('.slot')</code> to select all of the slots",
"Once they are all selected we can use bracket notation to access each individual one like this", "Once they are all selected we can use bracket notation to access each individual one like this",
"<code>$($('.slot')[0])</code>", "<code>$($('.slot')[0]).html('')</code>",
"This will grab the the first slot so that we can add the numbers we generate to them", "This will grab the the first slot so that we can add the numbers we generate to them",
"Use the above selector to display each number in the corresponding slot" "Use the above selector to display each number in the corresponding slot"
], ],