With the html:
<a class="jslider-pointer" href="#" style="left: 50%;"></a>
I used jquery api css() to get the value of left property:
$('.jslider-pointer').first().css('left')
It worked well in chrome, which returned 50%. But it didn't work in Firefox. It returned 150px in Firefox.
Does anyone know why it happened and how could I get the right value in Firefox(a method working across different browsers)?
Thanks