jquery selector by data attribute value multiple code example
Example 1: jquery select by data attribute
$('div[data-key=value]');
Example 2: select class with data attribute jquery
const restaurantId = 351;
const featuredButton = $(`.js-featured-restaurant[data-restaurant="${restaurantId}"]`);