I have 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>
And I'm trying to make a program where if you click on one of the buttons, it ONLY fades out the button you clicked on. I have the following Jquery:
$(document).ready(function(){
$(".button").click(function(){
$(".button").fadeOut()
});
});