JQuery SSN Mask

jquery

Solution

If you're masking it with jQuery you've already got a security hole. You need to mask it server-side otherwise it's being sent unmasked across the network. That's a huge privacy and identity theft problem.

Problem

How do I mask SSN in a Textbox and only show the last 4 digits of SSN when I load up a page using JQuery?

Original source