0

I have a problem.

When I clicked on any then all tab show present so this is my problem. my code is here https://code.sololearn.com/WCVJd11hYm9x/?ref=app

23rd Dec 2018, 3:12 AM
Satish Kumar Sharma
Satish Kumar Sharma - avatar
1 Odpowiedź
+ 2
[partial analysis, for someone to assist / you to explore :) ] I suspect you'd have better luck removing the setInterval* and adding an action to a "changed" hook (someone check me), because that lets you refer to a variable called "this", which is the current event context. Currently I believe your selectors grab all contexts $("label") if ANY context is checked, while I'm suggesting the $( this ) pattern. * JS is event-driven; setInterval could work with more code, but JS is designed to push events (not really to be polled for changes)
23rd Dec 2018, 3:26 AM
Kirk Schafer
Kirk Schafer - avatar