I have a DIV with <div contentEditable="true" id="content"></div>, my problem is that after using javascript to post off the div's contents, the cursor is still flashing within the DIV and I wanted this div to lose focus after submitting its contents, that is how can I get the cursor to be removed from the DIV after submitting? I have already tried setting the blur to this DIV after submitting but to no avail.
$('.save-button').on('click',function(){
var newBio = $("#content").text();
newBio = $.trim(newBio);
$.post(postdatahere,
function(data) {
$("#content").blur();
$('.save-button').hide();
});
});
Also, is it better to use .text() to get data from editable DIV or .html()?

