My array of options is laid out in a row of buttons:
<div class="console_row1">
<button class="button">TOFU</button>
<button class="button">BEANS</button>
<button class="button">RICE</button>
<button class="button">PASTA</button>
<button class="button">QUINOA</button>
<button class="button">SOY MILK</button>
</div>
I'm currently working on a functionality where clicking on a button will only fade out that specific button. Here's the Jquery code I have so far:
$(document).ready(function(){
$(".button").click(function(){
$(".button").fadeOut()
});
});