ainoy31 Posted May 7, 2009 Share Posted May 7, 2009 I would like an second eye on this piece of code to see if I am doing it right. $link = "<a href='javascript:void(0);' onclick='window.open('xxx.php?rec=$record', '', 'width=800, height=1000, scrollbars=no')' href='' class='CT'>View Record</a>"; The link comes up but it does not take me to the page when clicked. Much appreciation. AM Quote Link to comment https://forums.phpfreaks.com/topic/157242-solved-code-issue/ Share on other sites More sharing options...
Ken2k7 Posted May 7, 2009 Share Posted May 7, 2009 1. What browser are you using? 2. It should open up a new window. Quote Link to comment https://forums.phpfreaks.com/topic/157242-solved-code-issue/#findComment-828564 Share on other sites More sharing options...
premiso Posted May 7, 2009 Share Posted May 7, 2009 You have 2 href's inside of that one anchor tag. You are using single quotes within single quotes, which will cause a syntax error in Javascript. $link = "<a href='javascript:void(0);' onclick=\"window.open('xxx.php?rec=$record', '', 'width=800, height=1000, scrollbars=no')\" class='CT'>View Record</a>"; Should fix it. Quote Link to comment https://forums.phpfreaks.com/topic/157242-solved-code-issue/#findComment-828566 Share on other sites More sharing options...
ainoy31 Posted May 7, 2009 Author Share Posted May 7, 2009 Thank you for that. I didn't realize the second href. Much appreciation. Quote Link to comment https://forums.phpfreaks.com/topic/157242-solved-code-issue/#findComment-828568 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.