N nigelwong Established Member ★ 20 ★ Impact 3 Sep 26, 2006 655 views 2 replies #1 Does anyone know how to achieve this: <a href="javascript:launch('id.php?id=1','get');"> in javascript: window.location.href="javascript:launch('id.php?id=1','get');" That line does not work, but does anyone know how to get it to work? Thanks!
Does anyone know how to achieve this: <a href="javascript:launch('id.php?id=1','get');"> in javascript: window.location.href="javascript:launch('id.php?id=1','get');" That line does not work, but does anyone know how to get it to work? Thanks!
Kate Domainosaurus RexTop Member VIP ★ 20 ★ Impact 21,831 Sep 26, 2006 #2 window.location='id.php?id=1'; should do the work I don't know if there is anything particular in your launch function, also it may be bettter to enter a fully-qualified URL: http://www....
window.location='id.php?id=1'; should do the work I don't know if there is anything particular in your launch function, also it may be bettter to enter a fully-qualified URL: http://www....
N nigelwong Established Member ★ 20 ★ Impact 3 Sep 26, 2006 #3 I figured a way around it, thanks for your help, you made me realize that there was a function i missed out on, everything's working now, thanks! Last edited: Sep 26, 2006
I figured a way around it, thanks for your help, you made me realize that there was a function i missed out on, everything's working now, thanks!