Wrox Programmer Forums
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old December 27th, 2006, 10:24 AM
Authorized User
 
Join Date: Oct 2006
Posts: 76
Thanks: 0
Thanked 0 Times in 0 Posts
Default Format textboxes

Does anyone have any idea as to format textboxes to automatically display characters for phone numbers such as dashes and parentheses without the user having to enter it themselves? This is the actual code I have but it's not working.

Any suggestions?

<script language="JavaScript">


function formatHPhone()


{
var value = document.Form1.txtHomePh.value;
var valueLen = document.Form1.txtHomePh.value.length;
//alert(value);
if(valueLen==0)
{
document.Form1.txtHomePh.value="(";
}
if(valueLen>3 && valueLen<5)
{
if(event.keyCode==8)
document.Form1.txtHomePh.value=document.Form1.txtH omePh.value.remove(valueLen-1,1);
else
document.Form1.txtHomePh.value=document.Form1.txtH omePh.value+")-";

}
if(valueLen>8 && valueLen<10)
{
if(event.keyCode==8)
document.Form1.txtHomePh.value=document.Form1.txtH omePh.value.remove(valueLen-1,1);
else
document.Form1.txtHomePh.value=document.Form1.txtH omePh.value+"-";

}


}
        </script>

 
Old December 29th, 2006, 01:37 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

hi,
try this code, i found from google.
http://javascript.internet.com/forms...ne-number.html
http://www.google.lk/search?hl=en&q=...vascript&meta=

surendran
(Anything is Possible)
http://ssuren.spaces.msn.com





Similar Threads
Thread Thread Starter Forum Replies Last Post
date format differs, need to force format somehow patricolsson ASP.NET 2.0 Basics 1 December 3rd, 2009 12:53 AM
Convert British format date to American format? fyr PHP How-To 0 December 19th, 2007 03:17 PM
Convert Rich Text Format to Ordinary Format in ASP Andraw Classic ASP Basics 1 August 31st, 2007 10:05 AM
Two TextBoxes [email protected] ASP.NET 1.0 and 1.1 Basics 5 April 1st, 2006 06:32 AM
date format differs, need to force format somehow patricolsson HTML Code Clinic 2 January 12th, 2006 05:55 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.