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:
* Get free support
* Communicate privately with other members (PM).
* Removal of this message
* 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
Go Back   Tech Support Forum > Design Forum > Web Design & Programming
User Name
Password
Site Map Register Donate Rules Blogs Mark Forums Read


Web Design & Programming Discussion of web design, and server-side & client-side scripting

Reply
 
LinkBack Thread Tools
Old 08-20-2007, 03:31 PM   #1 (permalink)
Registered User
 
Codeman0013's Avatar
 
Join Date: May 2007
Location: Decatur Illinois
Posts: 257
OS: Windows 7

My System

Send a message via AIM to Codeman0013
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?
Codeman0013 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
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

Old 08-20-2007, 04:26 PM   #2 (permalink)
Design Team Member
 
Redcore's Avatar
 
Join Date: Aug 2007
Location: Jamestown, CA
Posts: 718
OS: Linux Mint 7

My System

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>
Since you haven't explained why you're doing the pop up thing...I guess that's why I'm confused why you even went that route.
Redcore is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-20-2007, 04:47 PM   #3 (permalink)
Registered User
 
Codeman0013's Avatar
 
Join Date: May 2007
Location: Decatur Illinois
Posts: 257
OS: Windows 7

My System

Send a message via AIM to Codeman0013
Re: pop up issue with back and forward buttons

I am doing it because when i did the about_blank it wasnt opening in a full screen i want the window to open full screen maximized any suggestions on this would be great if you have them.
Codeman0013 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-20-2007, 05:07 PM   #4 (permalink)
Design Team Member
 
Redcore's Avatar
 
Join Date: Aug 2007
Location: Jamestown, CA
Posts: 718
OS: Linux Mint 7

My System

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.
Redcore is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-20-2007, 05:10 PM   #5 (permalink)
Registered User
 
Codeman0013's Avatar
 
Join Date: May 2007
Location: Decatur Illinois
Posts: 257
OS: Windows 7

My System

Send a message via AIM to Codeman0013
Re: pop up issue with back and forward buttons

is there any code for ie at all that will bring that in?
Codeman0013 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Old 08-20-2007, 05:36 PM   #6 (permalink)
Design Team Member
 
Redcore's Avatar
 
Join Date: Aug 2007
Location: Jamestown, CA
Posts: 718
OS: Linux Mint 7

My System

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>
Redcore is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Reddit!
Reply With Quote
Reply


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off




All times are GMT -7. The time now is 11:04 AM.



Copyright 2001 - 2009, Tech Support Forum
Home Tips Plus | Outdoor Basecamp | Automotive Support Forum

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85