Link to home
Start Free TrialLog in
Avatar of MsKrissy
MsKrissy

asked on

onclick with parent command

I have the following lines of code:
else if( $aColumns[$i] == "Symbol" )
      {
				/* Link output */
				$row[] = "<a href='stock_report.php?Symbol=".$aRow[ $aColumns[$i] ]."'>".$aRow[ $aColumns[$i] ]."</a>";
      }

Open in new window


I also want to add:
onClick="parent.parent.callMe"
href="#"

Open in new window


But I can't figure out how to get it incorporated in without getting errors.  Can someone please help me?
ASKER CERTIFIED SOLUTION
Avatar of TiberiuGal
TiberiuGal
Flag of Romania image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of MsKrissy
MsKrissy

ASKER

Thank you for the help.