Вы должны поместить id в div, сказать «test», затем:
$('#test').bind('blur mousedown mouseup focus', function (e) {
// This is your combined function
// Inside here you can use e.type to find out whether it was a
// "blur", "mousedown", "mouseup", etc...
});
HTML будет выглядеть так:
<div id="test" contentEditable="true">
test test
</div>