May 14, 2007 #1 tester321 Programmer Joined Mar 13, 2007 Messages 150 Location CA Hi, i've been diddling with the syntax and can't seem to get it correct, any helping hands? Thanks Code: on (press) { getURL("javascript:createCookie('seDat','"+_root.ckin+"|"+_root.ckout+"',2)"); }
Hi, i've been diddling with the syntax and can't seem to get it correct, any helping hands? Thanks Code: on (press) { getURL("javascript:createCookie('seDat','"+_root.ckin+"|"+_root.ckout+"',2)"); }
May 15, 2007 1 #2 kennethkawamoto Technical User Joined Nov 19, 2002 Messages 2,710 Location GB Try: getURL("javascript:createCookie('seDat', "+_root.ckin+"|"+_root.ckout+", 2)"); Kenneth Kawamoto http://www.materiaprima.co.uk Upvote 0 Downvote
Try: getURL("javascript:createCookie('seDat', "+_root.ckin+"|"+_root.ckout+", 2)"); Kenneth Kawamoto http://www.materiaprima.co.uk
May 15, 2007 #3 kennethkawamoto Technical User Joined Nov 19, 2002 Messages 2,710 Location GB This is better: Code: getURL("javascript:createCookie('seDat', '"+_root.ckin+"|"+_root.ckout+"', 2)"); Kenneth Kawamoto http://www.materiaprima.co.uk Upvote 0 Downvote
This is better: Code: getURL("javascript:createCookie('seDat', '"+_root.ckin+"|"+_root.ckout+"', 2)"); Kenneth Kawamoto http://www.materiaprima.co.uk
May 15, 2007 Thread starter #4 tester321 Programmer Joined Mar 13, 2007 Messages 150 Location CA thanks kennethkawamoto ! Upvote 0 Downvote