Is it odd to wonder if there is a way to achieve something like this:
<li id="something-1"> </li>
<li id="something-2"> </li>
<li id="something-3"> </li>
And then with JavaScript
$("#something-"+ANYNUMBER).click(function() {
alert("Boom");
}
Can this be done? How would I go about doing it?
Thank you in advance!