How to get the css property from external source using js/jquery if the inline style is applied to the same element? Example:
<div id="my" style='left:100px'>some content</div>
<style>
#my{left:250px;}
</style>
I want to return 250px, if that's possible without removing the inline style?