Why does this doesn't select (ie highlight in blue etc.) the contenteditable <div>
?
Note: I'm using Firefox 36.0.1 (Windows 7)
$('#b').click(function() { $('#a').select().focus(); } );
<div id="a" contenteditable>Hello</div>
<div id="b">click here</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>