﻿/* These events should be for the DUCOM Master template only 
   and should NOT have any local customizations.  Use a file 
   named jquery.CoMIT-<application-name>.js for any local 
   jQuery customizations
*/

/* Set up input masks */
jQuery(function($) {
    $("input.dateMask").mask("99/99/9999");
    $("input.phoneMask").mask("999-999-9999");
    $("input.phoneWithExtensionMask").mask("999-999-9999? x99999");
    $("input.ssnMask").mask("999-99-9999");
});

