$(document).ready(function() {
    limitCharacters("#comment", 5000, "info");
    $("#comment").keyup(function() {
        limitCharacters(this, 5000, "info");
    });
});
