This using javascript to modify some goes some values in the styles, for it I do some calculations, and then I assign that value to the style of the identifier that I want to modify, but it does not show me any type of change .
document.getElementById('barra_logro_mensajes').style.right = mover;
If I do it manually, there's no problem:
document.getElementById('barra_logro_mensajes').style.right = "97.6";
I've tried single quotes, double quotes, with \"
, but nothing.