You need to sign in to do that
Don't have an account?
SSN number format in Visualforce page using Jquery or Javascript
Hello,
SSN number format in Visualforce page using Jquery or Javascript to Mask all
characters with (XXX-XX-XXXX)
Can anyone help me on this?
Thank you.
SSN number format in Visualforce page using Jquery or Javascript to Mask all
characters with (XXX-XX-XXXX)
Can anyone help me on this?
Thank you.
Please try below code:
Mark it as Best Answer, if it helps
All Answers
Please try below code:
Mark it as Best Answer, if it helps
I have added two static resources and below the line in the code:
download jMaskedInput.js and jQuery 3.2.1.js and create as a static resource.
apex:includeScript value="{!$Resource.jquery}"/> <apex:includeScript value="{!$Resource.jMaskedInput}"/>
$('[id$=output]').mask("999-99-9999");
check this updated code:
Mark it as Best Answer, if it helps