Here is the code snippet I am working with:
<div class="ongoing" style="width: +728px; margin-left: +12480px">
I need to extract the value of the margin-left
property for scrolling purposes.
The technique I used to retrieve the width
value does not work for margin-left
due to the hyphen in its name. This was my attempt:
$("div.ongoing")[0].style.margin-left
Could someone provide guidance on how to access the margin-left
value?
Many thanks!