JSFiddle - React, Tailwind, and code Playground

by Porfirio Chavez

HTML

<p><input type="button" id="helados" class="boton_productos" value="Helados"></p>
<p><input type="button" id="cafes" class="boton_productos" value="Cafés"></p>
<p><input type="button" id="bolleria" class="boton_productos" value="Bollería"></p>
<p><input type="button" id="refrescos" class="boton_productos" value="Refrescos"></p>
<p><input type="button" id="aperitivos" class="boton_productos" value="Aperitivos"></p>

JavaScript

function onOffBotones(){
	$('.boton_productos').prop('disabled', false);
  $(this).prop('disabled', true);
}

$(document).ready(function(){
	$('.boton_productos').on('click', onOffBotones);
});