Jan 21, 2004 #1 MartDawg Programmer Jan 14, 2004 33 US openit('some.asp?atime='+escape(atime)'atime2='+escape(atime2),1000,550) trying to pass the following URL and other values to a function.. pretty new to Javascript, I get a missing ) error?
openit('some.asp?atime='+escape(atime)'atime2='+escape(atime2),1000,550) trying to pass the following URL and other values to a function.. pretty new to Javascript, I get a missing ) error?
Jan 21, 2004 #2 simonchristieis Programmer Jan 10, 2002 1,144 GB I think your just missing a + sign here +escape(atime)< try this openit('some.asp?atime='+escape(atime)+'atime2='+escape(atime2),1000,550) Upvote 0 Downvote
I think your just missing a + sign here +escape(atime)< try this openit('some.asp?atime='+escape(atime)+'atime2='+escape(atime2),1000,550)