I am trying to run a code but it does not work, I do not know if it is due to logic error in its execution, see, this code is executed when the OK
button is pressed:
$('HTMLNEW').appendTo($(this).closest('.BOX').find('.DIVNEW')).css({
animation: "---"
});
HTML:
<div class="BOX">
<div class="DIVNEW">
</div>
<button id="ok">OK</button>
</div>
but it does not execute what is requested, in fact, it does not execute anything.