Note: this isn't a basic question on Querying by data-attributes
The problem I'm having is that I have certain elements like so:
<div data-step="1, 4">
I have figured out how to step through each [data-step] and extract the 1, 4 and create events for them, etc.
Let's say I'm trying to Query and grab this exact data-step but all I'm given is: 4
$('[data-step="4"]')
// this won't work of course
$('[data-step="1, 4"]')
// obviously this will work, but at this point I'm only given the index
// which will only be ONE of these numbers
Basically given (for examples sake, 4) How can I easily Query the selector to go out and grab [data-step="1, 4"]?
All I'm able to come up with is a loop, that goes through each data-step, strips out everything and sees if there is a match. Is there an easier way potentially?