<style type="text/css">
a {margin-left: 10px;}
</style>
<script type="text/javascript">
window.onload = function(){
document.getElementsByTagName('a')[0].onclick = function(){
alert(window.getComputedStyle(this, null).marginLeft || this.currentStyle.marginLeft)
};
return false;
};
</script>
<a href="#">Нажми на меня</a>