I am new to JQuery but not new to ASP or HTML. I need to get an input or asp:textbox mask to work. My test page jquery works as I am able to get a simple alert("hello"); to fire off with no problem. But I have been chasing the masking issue now for days. Can someone look at what I have and see if you can spot a problem? I am using the most current versions. This is my test page.
<!DOCTYPE html>
<head>
<title>Using jQuery UI from the CDN</title>
<!--
//////////////////////////////////////////////////////
Test Page
Version 1.0
By Michael Adkins (XXX) XXX-XXXX
Created 4/8/2017
Called by -
ASPX Page - Test.aspx
ASPX.VB Page - Test.aspx.vb
MasterPage - None
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
-->
</head>
<body>
<form>
<!-- Load the CDN first -->
<script src="Scripts/jquery-3.2.1.min.js"></script>
<script src="Scripts/jquery.maskedinput.min.js"></script>
<script type="text/javascript">
jQuery(function($){
$("#date").mask("99/99/9999",{placeholder:"mm/dd/yyyy"});
$("#phone").mask("(999) 999-9999");
$("#tin").mask("99-9999999");
$("#ssn").mask("999-99-9999");
});
</script>
<p> Phone Number:
<input type="text" class="phone" />
</p>
</form>
</body>
</html>