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 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. 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. 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. Link to comment https://forums.phpfreaks.com/topic/157242-solved-code-issue/#findComment-828568 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.