0
I’m developing a quiz where Divs transactions are done via CSS. The problem is that the transaction to add the next Div is running parallel to the withdrawal of the current one. I would like only at the end of the animation set in "removecontainer" begin the animation of "add".
It is possible to run this code snippet sequentially?
$containerOptions.eq(QUESTIONUMBER).addClass("removecontainer");
QUESTIONUMBER++;
$containerOptions.eq(QUESTIONUMBER).addClass("adicionaContainer");
Can make HTML and CSS available ?
– Ricardo Mota