1
I have several Divs dynamically loaded via PHP like this:
<div class="projeto" id="-9-3-21"></div>
<div class="projeto" id="-3-1-77"></div>
<div class="projeto" id="-5-33-1"></div>
<div class="projeto" id="-9-23-11"></div>
<div class="projeto" id="-1"></div>
A JS file receives an action when you click on some buttons, and the answer is a number. What I need is:
When you click the number 33 (example), the jquery fades on the Ivs that have this number, in case it would be this id="-5-33-1"
It is possible?
Seria
33
in the fieldid
? or in the text ofdiv
?– Edilson