Make an element class clickable | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Make an element class clickable

I was trying to do this: # Html <div class="trigger"> <div class="box"></div> </div> # Css .trigger { width: 100px; height: 100px; } .box { width: 100px; hieght: 100px; background: #f00; } .trigger.On .box { transform: translateY(-100px); } # Javascript + Jquery $('.trigger').on('click', function() { $(this).toggleClass('On'); }); <!-- But it doesn't work --> :'v

4th Sep 2018, 8:28 AM
Edwing123
Edwing123 - avatar
2 Answers
0
Hi Edwin Garcia, Just add a onclick attribute to it you can use onclick="clickfunc();" attribute in almost every HTML tag. Or make it an ID attribute and add an event addEventListener('click', id); <div id="box" onclick="clickfunc();" ></div> function clickfunc() { // code to execute } window.onload = function() { document.getElementById("box").addEventListener("click", id); } function id() { document.getElementById("box").innerHTML = id() } Additional source: https://www.w3schools.com/js/js_htmldom_eventlistener.asp
4th Sep 2018, 8:45 AM
🌴Vincent Berger🌴
🌴Vincent Berger🌴 - avatar
0
THANKS 🌴Vincent Berger🌴 i'll try
4th Sep 2018, 8:47 AM
Edwing123
Edwing123 - avatar