Compatibility with different browsers for frames


 
Thread Tools Search this Thread
Top Forums Web Development Compatibility with different browsers for frames
# 1  
Old 07-12-2008
Compatibility with different browsers for frames

Hi,

I am writing a web application using Perl CGI. And I have defined an frame within like this

Code:
"<iframe id=\"iframe01\" name=\"iframe01\" height=480 width=800 frameborder=0 scrolling=no></iframe>"

My problem is that this iframe appears differently on different browsers - IE6, IE7, Mozilla 2 and Mozilla 3. When I redirect the output of a particular operation into this iframe, on some browsers, the iframe reduces to a small window and doesn't stay at the defined size.

How do I get over this problem?

Regards,
garric

Last edited by Neo; 07-12-2008 at 03:30 AM.. Reason: Please use code tags with code, thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. What is on Your Mind?

Adblocking shuts down browsers by default?

One more detail, since I never was interested in netflix or hulu. But since netflix started to make it harder for so called thugs, I see in iceweasel, firefox, konqueror, qupzilla (did not try Otter or Midori) that any adblocking policy or addon just slams down my browser immediately. Only chrome... (3 Replies)
Discussion started by: 1in10
3 Replies

2. Shell Programming and Scripting

How to close the Web browsers in Shell Script?

Hi, Is there anyway to close all the Open tabs in Web Browser via Shell Script. Like browser.close( ) or something like that. Pls do help me soon, Thanks in Advance :) (1 Reply)
Discussion started by: Megala
1 Replies

3. Solaris

Web Browsers

How and what other web browsers can I install for Solaris 11 86_64? (1 Reply)
Discussion started by: Fingerz
1 Replies

4. UNIX for Advanced & Expert Users

Surfing the Internet problems with multiple browsers

Could anyone explain why I am having trouble surfing the internet with both firefox and konqueror? Chromium seems to be the only browser that will work. I tried to create a new profile with firefox and that didn't work either. I can ping things just fine, I can download stuff with wget, I can ssh... (6 Replies)
Discussion started by: cokedude
6 Replies

5. Shell Programming and Scripting

wget returns different data from web browsers

I am facing a strange issue with wget. I am not able to get the same data that I can get from my firefox web browser. I tried setting the user agent to firefox but i am still not able to get the same data.. Hope anyone can help point me to the correct direction. This is the command i used :... (0 Replies)
Discussion started by: Leion
0 Replies

6. IP Networking

Frames problems

I'm using ethereal to analyse my network from my pc. There're too many TCP Bad checksum 1. between my PC and unix servers (checksum: 0x6660 ) 2. between my PC and other servers (windows, novell) checksum: 0x6644 ) There're too many NBNS and BOOTP/DHCP Malformed Packet(Exception occured) ... (0 Replies)
Discussion started by: nymus7
0 Replies

7. UNIX for Dummies Questions & Answers

Flash/Shockwave Plugin Seems to Crash Browsers!

I have a problem, that's of course why I'm here. I just today installed, Vector Linux on a PII 233mhz with 160mb ram. The OS is stable, runs well, and is speedy for this older computer while running some GUI version. I can't recall which one. I can find out but it the browsers crash in all the... (1 Reply)
Discussion started by: garfunkle
1 Replies

8. BSD

error message in all browsers...

yes, i receive the same error message in all the browsers, the error message is: error host not found (1 Reply)
Discussion started by: nobody
1 Replies

9. UNIX for Dummies Questions & Answers

browsers

hello all, to see what browsers exist on solaris server what is the path and then how can i acces the internet? i appreciate your help. thanks, grep (4 Replies)
Discussion started by: grep
4 Replies
Login or Register to Ask a Question
WWWBrowser(3pm) 					User Contributed Perl Documentation					   WWWBrowser(3pm)

NAME
WWWBrowser - platform independent means to start a WWW browser SYNOPSIS
use WWWBrowser; WWWBrowser::start_browser($url, -oldwindow => 1); DESCRIPTION
start_browser($url [, %args]) Start a web browser with the specified URL. The process is started in background. The following optional parameters are recognized: -oldwindow => $bool Normally, the URL is loaded into a new window, if possible. With "-oldwindow" set to a false window, "WWWBrowser" will try to re-use a browser window. -browser => $browser Use (preferebly) the named browser $browser. See "CONFIGURATION" for a some browser specialities. This option will only work for unix. CONFIGURATION
For unix, the global variable @WWWBrowser::unix_browsers can be set to a list of preferred web browsers. The following browsers are handled specially: lynx, w3m Text oriented browsers, which are opened in an "xterm", "kvt" or "gnome-terminal" (if running under X11). If not running under X11, then no background process is started. kfmclient Use "openURL" method of kfm. netscape Use "-remote" option to re-use a running netscape process, if possible. _default_gnome Look into the "~/.gnome/Gnome" configuration file for the right browser. _default_kde NYI. The following variables can be defined globally in the main package: $os Short name of operating system ("win", "mac" or "unix"). &status_messages Error handling function (instead of default "warn"). REQUIREMENTS
For Windows, the Win32Util module should be installed in the path. AUTHOR
Slaven Rezic <slaven@rezic.de> COPYRIGHT
Copyright (c) 1999,2000,2001,2003 Slaven Rezic. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
Win32Util. perl v5.10.0 2009-03-10 WWWBrowser(3pm)