![]() |
![]() |
![]() |
|||||
![]() |
![]() |
![]() |
![]() |
![]() |
|||
| Welcome
to Tech Support Forum home to more then 136,000 problems solved. Issues
have included: Spyware, Malware, Virus Issues, Windows, Microsoft,
Linux, Networking, Security, Hardware, and Gaming Getting your
problem solved is as easy as: 1. Registering for a free account 2. Asking your question 3. Receiving an answer Registered members: * See fewer ads. * And much more..
|
| Want to know how to post a question? click here | Having problems with spyware and pop-ups? First Steps |
|
|||||||
| Web Design & Programming Discussion of web design, and server-side & client-side scripting |
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 (permalink) |
|
Registered User
|
pop up issue with back and forward buttons
Code:
<li><a href="http://www.teamsoy.com/cody/pii.html" onClick="popup = window.open('http://www.teamsoy.com/cody/pii.html', 'PopupPage', 'height=1500,width=1300,resizable=yes,scrollbars=yes,toolbar=yes,status=yes'); return false" target="_blank">Premier</a></li>
looking at that code can anyone tell me why when it pops up there is no toolbar back and forward buttons? |
|
|
|
| Important Information |
|
Join the #1 Tech Support Forum Today - It's Totally Free!
TechSupportForum.com is a leading support website for your computer needs. We offer free, friendly and personalized computer support. Why pay to have your computer fixed when you can do it for free. Join TechSupportforum.com Today - Click Here |
|
|
#2 (permalink) |
|
Design Team Member
|
Re: pop up issue with back and forward buttons
In Firefox it shows the toolbar...but in IE7, it has one that shows a toolbar and ANOTHER page that does not because of the 'target="_blank"' so you're basically telling IE7 to open the page twice (but Firefox is smart enough to know to just open one page).
IE7 has problems showing toolbars (it has problems in general...) for some weird reason. Since you WANT to show everything, why not just bypass the JS popup and just use target? HTML Code:
<li><a href="http://www.teamsoy.com/cody/pii.html" target="_blank">Premier</a></li> |
|
|
|
|
|
#4 (permalink) |
|
Design Team Member
|
Re: pop up issue with back and forward buttons
Ah, I didn't notice that because I must have a bigger resolution than you do, so it just looked like any about_blank opening window. With that in mind (and the fact that javascript popups typically get blocked) ...it's not really worth it.
Toolbar works with Firefox...but in IE7, it refers to the command bar. Yeah, that's pretty retarded...I don't get why IE doesn't get with the program. |
|
|
|
|
|
#6 (permalink) |
|
Design Team Member
|
Re: pop up issue with back and forward buttons
Looks like "location" will do it, actually...
HTML Code:
<li><a href="#" onClick="popup = window.open('http://www.teamsoy.com/cody/pii.html', 'PopupPage', 'height=1500,width=1300,resizable=yes,scrollbars=yes,toolbar=yes,status=yes,location=yes'); return false">Premier</a></li> |
|
|
|
![]() |
| Thread Tools | |
|
|