Jul 27, 2004 #1 lenelene Programmer Dec 10, 2002 57 MY i have problems..how to combine string together with symbols like var a=< var b=apple var c=> then combine together the text a+b+c i try it but nothing display for the javascript..how to includes symbols like < or > in the string
i have problems..how to combine string together with symbols like var a=< var b=apple var c=> then combine together the text a+b+c i try it but nothing display for the javascript..how to includes symbols like < or > in the string
Jul 28, 2004 #2 vbkris Programmer Jan 20, 2003 5,994 IN var a="<" var b="apple" var c=">" d=a+b+c alert(d) Known is handfull, Unknown is worldfull Upvote 0 Downvote