﻿$(document).ready(function() {
    $('.project-table textarea').each(function() {
        $(this).focus(function() { this.select(); });
    });
});