How can I make it so when you click inside a textarea, its entire content gets selected?
And eventually when you click again, to deselect it.
$('textarea').focus(function() { this.select(); }).mouseup(function() { return false; });