Jump to content

popup not rendering


kamal213

Recommended Posts

Hi guys,

 

The a tag below opens a popup window once click which works fine in html body tag:

<p><a href="#" onclick="MM_openBrWindow('#','','width=500,height=400');return false">test</a>

 

The problem is am selecting entries from my database and using php to render the link dynamically and it doesnt seem to work I cant figure out why, here's the php input:

<php? $b_link="<a href='b_item.php' onClick='MM_openBrWindow(b_item.php, ,width=500,height=400)return false'>$items</a>"; ?>

 

Here is also the also the javascript which makes it possible

 <!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

Link to comment
https://forums.phpfreaks.com/topic/256105-popup-not-rendering/
Share on other sites

After much persistance I got it work perfectly!

 

Sorry to bother you all

 

Problem solved!

 

Solution was putting

MM_openBrWindow("blankpage.php","","width=500,height=400");return false

into a varialble called $b_link_test and appending it using space, doublequote and dot as shown :

<php? $b_link="<a href='b_item.php' onClick='" . $b_link_test . "'>$items</a>" ?>

Link to comment
https://forums.phpfreaks.com/topic/256105-popup-not-rendering/#findComment-1312906
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.