Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
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 March 22nd, 2006, 06:11 AM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default

Code:
<input type="text" tabindex="3" name="ariapt" id="ariapt" size="12" value="" onChange="this.value=this.value.toUpperCase();destination_name();" class="selects" onDblClick="destination(this.name);" onKeyUp="fix_chars('ariapt',this.value);" />
when i applied the old function to this text box it didnt work????


www.crmpicco.co.uk
 
Old March 22nd, 2006, 06:42 AM
Friend of Wrox
 
Join Date: Jul 2003
Posts: 683
Thanks: 0
Thanked 1 Time in 1 Post
Default

You need to change...
Code:
onKeyUp="fix_chars('ariapt',this.value);"
to...
Code:
onKeyUp="fix_chars(this);"
HTH,

Chris

 
Old March 23rd, 2006, 05:56 AM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default

thanks Chris, but I need to pass the name of the textbox to the function as more than one textbox is using it.......

www.crmpicco.co.uk
 
Old March 23rd, 2006, 06:56 AM
Friend of Wrox
 
Join Date: Jul 2003
Posts: 683
Thanks: 0
Thanked 1 Time in 1 Post
Default

The function works fine with multiple textboxes as it is.

 
Old March 29th, 2006, 06:31 AM
Friend of Wrox
 
Join Date: Jan 2005
Posts: 1,525
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to crmpicco Send a message via AIM to crmpicco Send a message via MSN to crmpicco Send a message via Yahoo to crmpicco
Default

but, it needs to know what textbox to replace the charatcer with.....

www.crmpicco.co.uk
www.ie7.com
 
Old March 29th, 2006, 06:34 AM
Friend of Wrox
 
Join Date: Jul 2003
Posts: 683
Thanks: 0
Thanked 1 Time in 1 Post
Default

Try it.

"this" is a handle to the textbox, the function uses this handle to decide which one.






Similar Threads
Thread Thread Starter Forum Replies Last Post
remove characters from "=" and before ymeyaw Excel VBA 2 February 27th, 2007 06:02 AM
Custom script to remove special characters midoriweb Classic ASP Basics 2 January 12th, 2007 08:05 AM
asp variable declaration bad characters crmpicco Classic ASP Basics 2 August 18th, 2005 07:49 AM
characters a MySQL DB cannot deal with crmpicco MySQL 1 May 9th, 2005 07:15 AM
Want to get Polish characters from mySQL db zarol Beginning PHP 2 April 13th, 2005 09:20 AM





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