This is my JS code:
<script type="text/javascript">
function leftCur(elem) {
elem.style.cursor = 'url("izgled/slike/right.png"), auto';
};
</script>
And this is part of my HTML code:
<div class="mainleft" onmouseover="leftCur(this)">
When I hover with mouse over a div, mouse pointer changes picture, it works in Chrome and FF but it doesn't in IE.
THx.