document.getElementById('idcardsliderScroll').scrollBy(399.4, 0 );
// result scroll 399px
and
document.getElementById('idcardsliderScroll').scrollBy(399.5, 0 );
// result scroll 400px
I need to ScrollBy the decimal number without rounding, is it possible?
I don't know what to try