473,604 Members | 2,487 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

aol browser info -- need your favor

Hi, I dont have an AOL browser. If someone has the most recent
version, Can they please give me the following info

alert("navigato r.appName="+nav igator.appName+
"\nnavigator.ap pVersion="+navi gator.appVersio n+
"\nnavigator.ap pCodeName="+nav igator.appCodeN ame+
"\nnavigator.ve ndor="+navigato r.vendor+
"\nnavigator.pr oduct="+navigat or.product+
"\nnavigator.us erAgent="+navig ator.userAgent
);

also does any one know since which version of AOL they started
supporting the DOM method "getElementById ()". or if there is any
documentation about it.

TIA
Jul 23 '05 #1
2 1438
"Aamir Ghanchi" <aa**********@y ahoo.com> wrote in message
news:a6******** *************** ***@posting.goo gle.com...
also does any one know since which version of AOL they started
supporting the DOM method "getElementById ()". or if there is any
documentation about it.


Are you wanting to use browser detection to work out if getElementById is
supported?

There is a much better way - object detection (I think that's what it's
called)

eg:

if (document.getEl ementById)
{
document.getEle mentById('someI DName').otherSt uffHere =
propertiesForTh eElement
}
else
{
doSomethingElse
}

I hope that helped. I'm off on holiday for a week so can't reply. There
definitely wont be any Internet access seeing as there isn't even any
electricity or mains water.
Jul 23 '05 #2
Aamir Ghanchi wrote:
Hi, I dont have an AOL browser. If someone has the most recent
version, Can they please give me the following info
Version of AOL is irrelevent. The AOL software uses a scaled version of
the resident IE (Windows version only) on the machine. Means if you have
AOL 9.0 on two different machines, one has IE4, the other has IE6, they
will both report as AOL9.0 but the DOM's will be different because they
use the underlying browser engine.

The MAC version of AOL uses the users preferred external browser, AIUI.
It has no embedded browser AFAIK.
alert("navigato r.appName="+nav igator.appName+
"\nnavigator.ap pVersion="+navi gator.appVersio n+
"\nnavigator.ap pCodeName="+nav igator.appCodeN ame+
"\nnavigator.ve ndor="+navigato r.vendor+
"\nnavigator.pr oduct="+navigat or.product+
"\nnavigator.us erAgent="+navig ator.userAgent
);
navigator.appNa me=Microsoft Internet Explorer
navigator.appVe rsion=4.0 (compatible; MSIE 6.0; AOL 9.0; Windows NT 5.1)
navigator.appCo deName=Mozilla
navigator.vendo r=undefined
navigator.produ ct=undefined
navigator.userA gent=Mozilla/4.0 (compatible; MSIE 6.0; AOL 9.0; Windows
NT 5.1)

Next time, format your code to document.write instead of alert, it makes
it a LOT easier to copy/paste.

Also, the only difference between the above and what IE gives me is the
AOL 9.0 bit, the rest is identical. But the AOL browser doesn't offer
the same scriptability that IE does. My version of AOL5.0 reports the
same exact strings, except the 9.0 bit.
also does any one know since which version of AOL they started
supporting the DOM method "getElementById ()".
Yes, I know.
They started supporting it in any version that passes this test:

if (document.getEl ementById){
alert('The browser supports getElementById and I didnt even care what
browser it was')
}
or if there is any documentation about it.


Read above.
Jul 23 '05 #3

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

Similar topics

34
3458
by: Charles Douglas Wehner | last post by:
This is a serious question - but probably one that has been asked many times before. Go to http://wehner.org It has FRAMES. Select ADDISON. The main page (to the right of the buttons) shows it. In ADDISON, select WHATIS. The main page switches to WHATIS.
5
2733
by: DU | last post by:
Hi! I really need to understand what is so-called browser error correction mechanisms. Can you explain this? I read somewhere (and I no longer can find where I read that) that browsers try to render as best as they can elements (and/or attribute too? can't remember) that they ignore. e.g.: I know that fieldset will be rendered as a block level element in NS 4.7+, almost just like div.
13
2072
by: AMC | last post by:
Hi, I have the below code in an asp page. When I run this page in IE or Opera it correctly displays the header info and does not redirect me to 'test.html'. However, when I run this in Netscape it goes straight to the redirect page 'test.html' which indicates that javascript is not enabled and it also does not display the header info. Can someone tell me why this is happening? <%@ Language=VBScript%> <%'get header info
8
5725
by: Joe Johnston | last post by:
I need a Browser Helper object written in VB.NET Please point me at a good example. Joe MCPx3 ~ Hoping this MSDN ng three day turnaround is true. Additional info: What is a BHO? In its simplest form, a BHO is a COM in-
0
968
by: Marc Gravell | last post by:
Note: Not strictly tied to C#; so an answer of "repost to <x>" would be more than adequate - however, I value the opinions of people on this group, and I am sure that somebody here has had to do this before. I have two disparate systems (one a browser-app, one a C# .Net2 smart-client deployed with click-once (online-only)) which I need to tie together; my requirement is to be able to send simple messages from the browser client to the...
5
2609
by: Bill Cohagan | last post by:
I'm having some serious difficulties with my ASP.Net 2.0 app rendering in Safari 2.0.3. The most immediate problem is that the menu control doesn't seem to work at all, particularly the use of dynamic levels. I've Googled around a bit and determined that the problem is not so much with Safari as it is with ASP.Net inaccurately determining the browser capabilites for that browser. In the 2.0 Framework it appears that browser caps are...
20
4459
by: Tim Reynolds | last post by:
Team, I am developing a web service. In testing in on my enw PC, I am expecting to see exceptions thrown appear on my browser. Instead I am getting an HTTP 500 Internal Server Error page and I am not seeing my exception details. The web.config file being used has the setting <customErrors mode="Off"/>. This should allow me to see the detailed exception info. On a different computer - same code - same web config - the exception details...
34
2905
by: nicolasfr | last post by:
Hi, I am a bit disapointed with the current Python online documentation. I have read many messages of people complaining about the documentation, it's lack of examples and the use of complicated sentences that you need to read 10 times before understanding what it means. That's why I have started a collaborative project to make a user contributed Python documentation. The wiki is online here: http://www.pythondocs.info
246
6365
by: Chris F.A. Johnson | last post by:
I have posted a quick survey at <http://cfaj.freeshell.org/testing/width.shtml>. There's only one question: select the widest line that fits in your normal browser window. Your assistance is appreciated. -- Chris F.A. Johnson, webmaster <http://Woodbine-Gerrard.com>
0
8419
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
8409
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...
1
8065
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8280
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
3907
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
3955
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2434
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
1
1526
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1266
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.