sandbudd Posted April 9, 2009 Share Posted April 9, 2009 This code works great with displaying the results in its own page _blank how can I make it just pop up without opening a new browser kinda like in a pop up window? <?php if(empty($row_Recordset1['map'])){ //empty() returned true : so there is nothing echo 'Directions'; }else{ //empty() returned false so it is NOT true that there is nothing //so we can print it out: echo '<a href="/images/map/' . $row_Recordset1['map'] . '" target="_blank" class="style3">Directions</a>'; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/153371-solved-creating-showing-image/ Share on other sites More sharing options...
sandbudd Posted April 9, 2009 Author Share Posted April 9, 2009 I know this has to be done in javascript but every thing I have tried returns a blank window Quote Link to comment https://forums.phpfreaks.com/topic/153371-solved-creating-showing-image/#findComment-805788 Share on other sites More sharing options...
eiledon01 Posted April 9, 2009 Share Posted April 9, 2009 This is more a Javascript issue. Even if you use a javascript popup, it will still open in a new window if you have target="_blank" in your link. change echo '<a href="/images/map/' . $row_Recordset1['map'] . '" target="_blank" class="style3">Directions</a>'; to something like echo '<a href="javascript://" onClick="popupfunction(\'/images/map/' . $row_Recordset1['map'] . '\');" class="style3">Directions</a>'; where "popupfunction" is a Javascript function that launches a popup. Quote Link to comment https://forums.phpfreaks.com/topic/153371-solved-creating-showing-image/#findComment-805790 Share on other sites More sharing options...
sandbudd Posted April 9, 2009 Author Share Posted April 9, 2009 when link is clicked nothing happens? Quote Link to comment https://forums.phpfreaks.com/topic/153371-solved-creating-showing-image/#findComment-805792 Share on other sites More sharing options...
eiledon01 Posted April 9, 2009 Share Posted April 9, 2009 You need a javascript popup function: http://www.google.com/search?q=javascript+popup+function+tutorial&meta= Quote Link to comment https://forums.phpfreaks.com/topic/153371-solved-creating-showing-image/#findComment-805809 Share on other sites More sharing options...
sandbudd Posted April 9, 2009 Author Share Posted April 9, 2009 oh well javascript is something I know nothing about Quote Link to comment https://forums.phpfreaks.com/topic/153371-solved-creating-showing-image/#findComment-805816 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.