I am trying to change the cursor to "pointer" for specific elements in content editable divs.

The below html code does not work as expected in Internet Explorer 8 and 9.
Any ideas how to set cursor style for elements in editable divs?

<div contenteditable="true">
    <img src="http://images3.wikia.nocookie.net/__cb20100430200315/fantendo/images/0/06/Foo.jpg" style="cursor:pointer"/>
</div>
link|improve this question
Why is the <div> the direct child of <html>? – dotweb Jan 12 at 13:47
Don't think that is the problem. Edited anyways. – Deniz Gulmez Jan 12 at 14:19
It's not the problem, obviously. But it's very weird to do it. – dotweb Jan 12 at 15:54
feedback

1 Answer

Try this answer elsewhere on the site. It uses a bit of javascript to define your cursor.

link|improve this answer
My problem is spesific to elements with contenteditable attribute set to true. I tried setting cursor style on mouseover but no help. Cursor always have "move" style. – Deniz Gulmez Jan 12 at 13:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.