jkkenzie Posted July 1, 2008 Share Posted July 1, 2008 Ho can make an internet explorer not to display menus and explorer bar. I just want it to show content only. Thanks, Joseph Quote Link to comment Share on other sites More sharing options...
dannyb785 Posted July 1, 2008 Share Posted July 1, 2008 Are you talking about 1) on a webpage popup? Or 2) to be done automatically when viewing your page? Or are you talking about 3) just your browser when navigating the web? If it's the first one, use the following code in a link so the popup shows nothing but content onClick="window.open('viewimage.php?id=64','mywindow','scrollbars=yes,width=WIDTH,height=HEIGHT')"> // ps you need to specify a WIDTH and HEIGHT If it's the second, I don't think you can do it(but maybe). If it's the last one, why on earth post in a php forum? You could google that(or rightclick the area and unselect things. or click the drag the stuff away) Quote Link to comment Share on other sites More sharing options...
jkkenzie Posted July 1, 2008 Author Share Posted July 1, 2008 it was the first, Thanks, Jose Quote Link to comment Share on other sites More sharing options...
jkkenzie Posted July 2, 2008 Author Share Posted July 2, 2008 I want to put it on a link. How do put your code in this link below: <li><u><font color="#EEE"><a href='news1.html'>Investment Advisory Board Launched </a></font></u></li><br> Regards, Joseph Quote Link to comment Share on other sites More sharing options...
jkkenzie Posted July 2, 2008 Author Share Posted July 2, 2008 Actually, i got it. BUT i could achieve it because am using in flash which does not support. What i need is to make use of your code so that when a page loads, it makes itself a popup(as your option one) Regards, Joseph Quote Link to comment Share on other sites More sharing options...
haku Posted July 2, 2008 Share Posted July 2, 2008 <script type="text/javascript"> window.onload = function() { window.open('viewimage.php?id=64','mywindow','scrollbars=yes,width=WIDTH,height=HEIGHT') } </script> Quote Link to comment Share on other sites More sharing options...
dannyb785 Posted July 2, 2008 Share Posted July 2, 2008 I want to put it on a link. How do put your code in this link below: <li><u><font color="#EEE"><a href='news1.html'>Investment Advisory Board Launched </a></font></u></li><br> Regards, Joseph you'd do <a href='news1.html' onClick="window.open('viewimage.php?id=64','mywindow','scrollbars=yes,width=WIDTH,height=HEIGHT')"> Quote Link to comment 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.