$(document).ready(function(){
    $(".usernameInput")
        .focus(function() {
            $(this).val("");
        });

})
