kamal213 Posted January 31, 2012 Share Posted January 31, 2012 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 More sharing options...
kamal213 Posted January 31, 2012 Author Share Posted January 31, 2012 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 More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.