<!-- the full contents of this file are included in the head block of your page -->
<!-- note to work we must start with the js/ directory, then the name of the folder -->



<script type="text/javascript" src="//code.jquery.com/jquery-2.1.4.min.js"></script>
<script type="text/javascript" src="./js/input-mask/jquery.mask.min.js"></script>
    


<script type="text/javascript">



// See: http://igorescobar.github.io/jQuery-Mask-Plugin/

// This script creates a custom dropdown control with images and text.



// How To Use:



// ---------------------------------------------------------------------------------
// 1. Add a Code Block element to your form page, and copy/paste the following code
// into The * Raw Block Code * section:
// ---------------------------------------------------------------------------------

/*

// COPY FROM HERE:

<script type="text/javascript">
  
  $(document).ready(function(){
    $('#date').mask('00/00/0000');
    $('#student_id').mask('000-000-0000');
  });
  
</ script>

// TO HERE

// ---------------------------------------------------------------------------------
// 2. Remove the space between / and s after pasting into RackForms
// ---------------------------------------------------------------------------------

*/

// ---------------------------------------------------------------------------------
// 3. Add a text field to your form and set its Name/Value to: date
// ---------------------------------------------------------------------------------

</script>