thisanthrope
Technical User
Hi,
I'm not a coder but I'm forced to work with it on occasion. I operate as a admin a online print site where clients can enter in contact info to create imprint on promotional items.
I can plug in java in certain places to control some of the entry fields. The code I can write is pretty simple stuff for example to format dots instead of dashes for phone numbers like:
I have an issue where I need some code written to format an address field so that the letters are font size X and numbers are font size Y.
could get anyone to help me out?
I'm not a coder but I'm forced to work with it on occasion. I operate as a admin a online print site where clients can enter in contact info to create imprint on promotional items.
I can plug in java in certain places to control some of the entry fields. The code I can write is pretty simple stuff for example to format dots instead of dashes for phone numbers like:
Code:
if (hasValue(curInput.name))
{
if (! AutoFormat(curInput, '###.###.####', 'Please enter your number in a 555.555.5555 format'))curInput.focus();
}
could get anyone to help me out?