Is there a way to retrieve the css property from an external source using JavaScript or jQuery even if inline styles are applied to the same element? Here's an example:
<div id="my" style='left:100px'>some content</div>
<style>
#my{left:250px;}
</style>
How can I get the value of 250px without removing the inline style?