473,792 Members | 2,877 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why do MAC browsers don't work here?

Hi all,

http://www.gurmatps.org works fine in MSIE6, Opera7, NS7 (for windows)
Could someone do me the favor and check what may be wrong that it
doesn't display right in MAC browsers?

Thanks

Ranbir
Jul 23 '05 #1
3 1278
Ranbir Kaur wrote:
Hi all,

http://www.gurmatps.org works fine in MSIE6, Opera7, NS7 (for windows)
Could someone do me the favor and check what may be wrong that it
doesn't display right in MAC browsers?

Thanks

Ranbir


You're kidding, right? Several hundred (thousand?) lines of HTML and
JavaScript, spread across 5 files?

Unless you are prepared to find roughly where the error is and trim your
code to a concise example of the issue, no one here is going to waste
hours debugging your code.

If it helps, your feature-based browser detection results in Safari
getting dom = 1 and ns6 = 1.

Given that the page does display briefly the first time, I'd concentrate
on this bit:
//Toggle Layer Visibility
function toggleVisibilit y(id, NNtype, IEtype, W3Ctype) {
if (document.getEl ementById) {
eval("document. getElementById( id).style.visib ility = \"" + W3Ctype + "\"");
} else {
if (document.layer s) {
document.layers[id].visibility = NNtype;
} else {
if (document.all) {
eval("document. all." + id + ".style.visibil ity = \"" + IEtype + "\"");
}
}
}
}

Have fun.
Jul 23 '05 #2
Thanks. I was actually looking for javascript error messages. The small
fraction of code you quote is only for an 'onmouseover' effect, since NS
doesn't support that for <div>, and has nothing at all to do with the actual
page.

Is there any incompatibility for IFRAMEs in MAC? I'm putting it together
piece by piece again, maybe I'll figure it out by myself what may be wrong.

Thanks again for your effort,

Ranbir

In article <41************ **********@per-qv1-newsreader-01.iinet.net.au >,
Fred Oz wrote:
Ranbir Kaur wrote:
Hi all,

http://www.gurmatps.org works fine in MSIE6, Opera7, NS7 (for windows)
Could someone do me the favor and check what may be wrong that it
doesn't display right in MAC browsers?


You're kidding, right? Several hundred (thousand?) lines of HTML and
JavaScript, spread across 5 files?

Unless you are prepared to find roughly where the error is and trim your
code to a concise example of the issue, no one here is going to waste
hours debugging your code.

If it helps, your feature-based browser detection results in Safari
getting dom = 1 and ns6 = 1.



Jul 23 '05 #3
Ranbir Kaur wrote:
Thanks. I was actually looking for javascript error messages. The small

[snip]

I didn't get any JavaScript error messages. Are you logging
errors? To turn on Safari's debuuger, look here:

http://developer.apple.com/internet/....html#anchor14

There are a number of other developer tools available too
once the debug menu is enabled (including a DOM viewer).

Cheers, Fred.
Jul 23 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

53
5748
by: Cardman | last post by:
Greetings, I am trying to solve a problem that has been inflicting my self created Order Forms for a long time, where the problem is that as I cannot reproduce this error myself, then it is difficult to know what is going on. One of these Order Forms you can see here... http://www.cardman.co.uk/orderform.php3
12
2585
by: confused | last post by:
After expressing my interest in expanding my new knowledge of HTML and CSS into the wild realm of JavaScript, I was advised that it is wiser to avoid it, since not all browsers are use it or are enabled to read it. After searching for other opinions on the web, I found that some estimate that the frequency of browsers that can read JS currently is better than 90% -- that is certainly workable for me! Do you good people have any thoughts...
12
1722
by: code_wrong | last post by:
Hi, as the subject says How many browsers must we support? How many are there exactly? When I run this JavaScript in Firefox and IE6: function init(){ if(document.getElementById) alert("W3C DOM Supported"); else if(document.all)
6
1998
by: Richie | last post by:
I went through the past six months or so of entries in c.l.javascript, and found a couple where people had expressed opinions about the value of supporting much older versions of Netscape and IE. The entries included incidental mention of server logs showing how many pages had been retrieved by such browsers. I'd like to get some sort of communal variety of opinions on how much effort it's worth to put in the support, or in some...
4
2471
by: metoikos | last post by:
I've scoured the web (clumsily, I'm sure) for information on the difficulties I am having, checked my markup in validators, and had a friend with more CSS clue look over it, but I haven't had any luck. I'll detail my difficulties here and hope for help. I will note that I'm using headings to delineate different sections of my message for easier reading. As you can see from the subject, my problems are related to spacing; one of them is...
4
2199
by: Daniel Kaplan | last post by:
Sorry, I posted this in ...authoring.html newgroup, and only just found this newsgroup. Sorry for the double post: Morning, I just added the CSS style below* to my CSS page and then used the class on type="submit" whereever I use a Submit button for a form. Just wanted to make the buttons stick out a little more is all. Well it turns out that when I do this, both FireFox and Netscape show the
133
6950
by: Alan Silver | last post by:
Hello, Just wondered what range of browsers, versions and OSs people are using to test pages. Also, since I don't have access to a Mac, will I have problems not being able to test on any Mac browsers, or is there some other way of checking? TIA --
77
4527
by: VK | last post by:
Randy Webb wrote: > VK said the following on 5/2/2006 9:48 AM: > > If you mean "trying to render it" then FF behavior is the same as for > > all other UA's willing to be in use (and not W3C demos). If document is > > served as text/html, FF will render it somehow anyhow. > > So you are saying it totally disregards the DTD and any hints from the > server how to handle the document? Except server reported Content-Type (text/plain,...
5
4024
by: Peter Michaux | last post by:
Hi, I just did a bunch of testing and was surprised with the results. If anyone doesn't know this stuff here is what I found about event.clientX. The event.clientX property in Safari is in page coordinates. In IE, Opera, Firefox event.clientX it is in window coordinates. This means a lot when trying to determine event location in page
0
9518
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10430
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10211
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10000
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9033
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5436
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5560
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4111
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3719
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.