Jump to content

[SOLVED] Code Issue


ainoy31

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.