I'm having trouble concatenating the elements below.
I have the valorID
variable that is used as an id in the div, and I'm trying to insert it in the id attribute and valorPosicao
for the left attribute of the inline css.
However, I can not enter the information.
var valorID='meuID';
var valorPosicao=20;
$("body").prepend('<div id='+valorID+'style=position:absolute;left:'+valorPosicao+'px;'+'></div>');