Feb 9, 2005 #1 DataSpy Technical User Nov 15, 2002 39 US Hello, I was just wondering what value+ does? Example (document.MyForm.one.value+".htm"). Any help is appreatied, thanx in advance.
Hello, I was just wondering what value+ does? Example (document.MyForm.one.value+".htm"). Any help is appreatied, thanx in advance.
Feb 9, 2005 #2 trollacious Programmer Sep 29, 2004 4,046 US (document.MyForm.one.value+".htm") gets the string inside the quotes in <input type="text" value="your text value here"> and adds the characters ".htm" to it. In technical terms, the plus sign concatentates the 2 strings into one. Lee Upvote 0 Downvote
(document.MyForm.one.value+".htm") gets the string inside the quotes in <input type="text" value="your text value here"> and adds the characters ".htm" to it. In technical terms, the plus sign concatentates the 2 strings into one. Lee