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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.