viajqueryIcannot.
$(".jFormerControl").append('.campos');
$(".campos").append(".jFormerControl");
I tried for these commands but it did not roll. Has anyone been through this and can you help me?
viajqueryIcannot.
$(".jFormerControl").append('.campos');
$(".campos").append(".jFormerControl");
I tried for these commands but it did not roll. Has anyone been through this and can you help me?
Try something like this:
var $campos = $(".campos");
var $formerControl = $(".jFormerControl");
$formerControl.append($campos);