﻿$(document).ready(function() {

    /* Textboxes that have tooltip text inside that should be removed on enter */
    $('.hastip').focus(function() { $(this).val(''); $(this).unbind('focus'); });

});
