May 14, 2007 #1 tester321 Programmer Mar 13, 2007 150 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 Nov 19, 2002 2,710 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 Nov 19, 2002 2,710 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 Mar 13, 2007 150 CA thanks kennethkawamoto ! Upvote 0 Downvote