Let's imagine a scenario where we have 4 divs:
<div class="mine-banana"></div>
<div class="mine-grape"></div>
<div class="mine-apple"></div>
<div class="orange"></div>
After some experimenting, I've managed to identify a JQuery selector that targets the 3 "mine" divs specifically. However, I'm now faced with the challenge of extracting all the fruits related to "mine" :)
$('[class*=" mine-"]').each(function() {
var fruit = $(this).????
});