I am using jQuery to add a content editing attribute to a DIV.
$('div').attr('contenteditable', 'true');
When I click on it, I donβt get the focus effect that I get when I click on already content divs. It only focuses when I click it again.
This happens in each of my browsers - Safari 5, Chrome 18, Firefox 8. In any case, can I make it behave as it should?
source
share