Is it possible to react to a click only when the user is not highlighting the text like facebook does in its chat windows?
$("#wrapper").on("click", '.content', $.proxy(function(e) {
// if ($(e.currentTarget).isHighlighted()) return false;
}, this));