Feedback on: Passing data from one form to another, on November 17, 2002 at 06:10:19:
You are here: irt.org | About | Feedback | 4280 [ previous next ]
Feedback on:
Passing data from one form to another
Sent by
Mark Preston on November 17, 2002 at 06:10:19:
Worth:
Very worth reading
Comments:
Instead of the replace function to change "+" to " " this below has just worked for me, although more than one space just gets replaced by one space:-
Replace the line
var passed = location.search.substring(1);
with
var pssd = location.search.substring(1), passed = "";
for ( var i = 0; i < pssd.length; i++){
if( pssd.charAt(i)!="+") passed += pssd.charAt(i);
else passed += " ";
}
Regards from Mark
Other feedback on 'Passing data from one form to another' - show all
- Passing data from one form to another - bha123 June 07, 2007 at 17:25:32
- Passing data from one form to another - Dan April 30, 2007 at 12:00:14
- Passing data from one form to another - Mark Preston November 17, 2002 at 06:10:19
- Passing data from one form to another - Nigel Powell July 23, 2001 at 12:13:21
- Passing data from one form to another - Kanno December 29, 2000 at 12:24:38
- Passing data from one form to another - Eric November 07, 2000 at 16:32:53
- Passing data from one form to another - david abrahams November 06, 2000 at 08:06:24
- Passing data from one form to another - Tom McClure September 19, 2000 at 13:40:29
- Passing data from one form to another - Steve McMahon March 25, 2000 at 23:07:16
- Passing data from one form to another - Scott Null November 03, 1999 at 10:02:47
- Passing data from one form to another - Tu Nguyen October 20, 1999 at 13:40:04
- Passing data from one form to another - Nikola Olic September 21, 1999 at 15:51:51
- Passing data from one form to another - Roger Higgins May 25, 1999 at 02:33:11
- Passing data from one form to another - Mikester March 04, 1999 at 09:59:49
©2018 Martin Webb