Re: browser detection script

2004-04-07 Thread Bryan Stevenson
.com - Vancouver Island ColdFusion Users Group Founder & Director www.cfug-vancouverisland.com   - Original Message -   From: Samuel R. Neff   To: CF-Talk   Sent: Wednesday, April 07, 2004 3:58 PM   Subject: RE: browser detection script

Re: browser detection script

2004-04-07 Thread Bryan Stevenson
-   From: Jochem van Dieten   To: CF-Talk   Sent: Wednesday, April 07, 2004 3:27 PM   Subject: Re: browser detection script   Bryan Stevenson wrote:   > Thanks Jochembut how do I test if a browser will render the site as intended (i.e. in NS 4 this site looks WAY off the intended look).

RE: browser detection script

2004-04-07 Thread Samuel R. Neff
dia.com/go/team > -Original Message- > From: Charlie Griefer [mailto:[EMAIL PROTECTED] > Sent: Wednesday, April 07, 2004 6:36 PM > To: CF-Talk > Subject: Re: browser detection script > > what Jochem is suggesting is testing for the capability of > any browser to

Re: browser detection script

2004-04-07 Thread Charlie Griefer
;Bryan Stevenson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, April 07, 2004 3:07 PM Subject: Re: browser detection script > Thanks Jochembut how do I test if a browser will render the site as intended (i.e. in NS 4 this site looks WAY

Re: browser detection script

2004-04-07 Thread Jochem van Dieten
Bryan Stevenson wrote: > Thanks Jochembut how do I test if a browser will render the site as intended (i.e. in NS 4 this site looks WAY off the intended look). You use certain functions, right? Just test for those :-) Instead of (pseudocode): function getIt(It) {    return document.getElemen

Re: browser detection script

2004-04-07 Thread Bryan Stevenson
rtner www.macromedia.com - Vancouver Island ColdFusion Users Group Founder & Director www.cfug-vancouverisland.com   - Original Message -   From: Jochem van Dieten   To: CF-Talk   Sent: Wednesday, April 07, 2004 2:49 PM   Subject: Re: browser detecti

Re: browser detection script

2004-04-07 Thread Jochem van Dieten
Bryan Stevenson wrote: > > Does anybody have a rock solid _javascript_ script for browser detection? or a > CF code snippet? > > I'm under the gun and don't really want to re-invent the wheel using this > script (it's kind of overkillbut very good): > http://webreference.com/tools/browser/_ja

Re: browser detection script

2004-04-07 Thread Bryan Stevenson
2:35 PM   Subject: Re: browser detection script   If you're looking for something server side, try Browserhawk:   http://www.browserhawk.com/   - Original Message -   From: Bryan Stevenson <[EMAIL PROTECTED]>   Date: Wednesday, April 7, 2004 3:28 pm   Subject: browser detection

Re: browser detection script

2004-04-07 Thread Kwang Suh
If you're looking for something server side, try Browserhawk: http://www.browserhawk.com/ - Original Message - From: Bryan Stevenson <[EMAIL PROTECTED]> Date: Wednesday, April 7, 2004 3:28 pm Subject: browser detection script > Hey All, > > Does anybody have a rock solid _javascript_ sc

Re: Browser Detection

2002-05-02 Thread Kreig Zimmerman
To my knowledge no-one's done anything comprehensive in this arena. I've thought of transforming Mozilla.org's client sniffer JS into a UDF, but haven't had the time (it's ultra-comprehensive; be nice if it was cfscript and not javascript tho!). Most other tags I've seen just aren't up to snuf

Re: browser detection UDF

2002-03-21 Thread Greg Alton
opers with experience using these. Greg Alton CFDev - Original Message - From: "Raymond Camden" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, March 21, 2002 12:21 PM Subject: RE: browser detection UDF > Actually I'm pre

RE: browser detection UDF

2002-03-21 Thread Clint Tredway
I looked before I posted my request. Clint -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 11:20 AM To: CF-Talk Subject: RE: browser detection UDF Go to: www.cflib.org all sort of goodies Thanks, Jason -Original Message- From

RE: browser detection UDF

2002-03-21 Thread Jason Larson
Go to: www.cflib.org all sort of goodies Thanks, Jason -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 9:45 AM To: CF-Talk Subject: browser detection UDF Someone posted a UDF that detected the browser.. Does someone have this handy

RE: browser detection UDF

2002-03-21 Thread Raymond Camden
PROTECTED] Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda > -Original Message- > From: Jason Larson [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 21, 2002 12:20 PM > To: CF-Talk > Subject: RE: browser detection UDF > > &

RE: Browser Detection UDF

2002-01-21 Thread Pete Freitag
here's one: http://www.cfdev.com/products/productdetail.cfm/id/1003 -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 3:55 PM To: CF-Talk Subject: Browser Detection UDF Does anyone have a UDF that will detect the type and version of a user'

RE: Browser Detection UDF

2002-01-21 Thread Russel Madere
This is perfect! Thanks. I hope to put this into production. Russel -Original Message- From: Steve Oliver [mailto:[EMAIL PROTECTED]] Sent: Monday, January 21, 2002 3:12 PM To: CF-Talk Subject: RE: Browser Detection UDF I found a custom tag and just converted it over to a UDF, hope

RE: Browser Detection UDF

2002-01-21 Thread Kevin Bridges
I just saw one in the exchange on macromedias site earlier today ... didn't download it though so have no opinion about it ... I think I searched for browser detect ::: -Original Message- ::: From: Russel Madere [mailto:[EMAIL PROTECTED]] ::: Sent: Monday, January 21, 2002 1:55 PM ::: T

RE: Browser Detection UDF

2002-01-21 Thread Steve Oliver
I found a custom tag and just converted it over to a UDF, hope it helps! getBrowser(cgi.http_user_agent); #getBrowser.browsername# - #getBrowser.browserVersion# function getBrowser(user_agent){ browserName="Unknown"; browserVersion="0"; if (Len(user_agent)) { if (Find("MSIE",user_

RE: Browser Detection UDF

2002-01-21 Thread C. Hatton Humphrey
I don't think you need a UDF for that... look at the CGI.HTTP_USER_AGENT for that info. C. Hatton Humphrey, Developer Fisher, Towne & Associates 716-839-2141 x336 [EMAIL PROTECTED] > -Original Message- > From: Russel Madere [mailto:[EMAIL PROTECTED]] > Sent: Monday, January 21, 2002 3:5

RE: Browser detection w/CF

2001-11-25 Thread Peter Tilbrook
There's a good custom tag called "CF_BrowserCheck" on the Developer's Exchange that supports many browsers, including Opera and Lynx. http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34712E-2830-11D4-AA 9700508B94F380&method=Full Peter Tilbrook ([EMAIL PROTECTED]) Macromedia ColdFusion A

RE: Browser detection w/CF

2001-11-23 Thread Tangorre, Michael T.
Hi Doug, Try this.. Your Browser: NETSCAPE 6 NETSCAPE 4.76 INTERNET EXPLORER WHO KNOWS!!! There is a cool custom tag out there as well.. Try here: http://www.digital-jungle.com/cfuseragent/ Mike -Original Message- From: Douglas L. Brown [mailto:[EMAIL PROTECTED]] Sent: Friday,

RE: Browser Detection

2000-10-17 Thread Peter Tilbrook
Or even: -Original Message- From: Warrick, Mark [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 18 October 2000 2:03 To: CF-Talk Subject: RE: Browser Detection -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289

RE: Browser Detection

2000-10-17 Thread Paul Johnston
see cf_browser in the allaire tag gallery. Paul > -Original Message- > From: Gavin Myers [mailto:[EMAIL PROTECTED]] > Sent: 17 October 2000 16:48 > To: CF-Talk > Subject: Browser Detection > > > Now i feel dumb for recently deleating all of that past browser detection > talk > > this is

RE: Browser Detection

2000-10-17 Thread Doug Powell
You can use this script -Original Message- From: Gavin Myers [mailto:[EMAIL

RE: Browser Detection

2000-10-17 Thread Larry Juncker
Gavin; Seem you should be able to say: DO This DO this Larry Juncker Senior Cold Fusion Programmer Heartland Communications Group, Inc. -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 10:48 AM To: CF-Talk Subject: Brow

RE: Browser Detection

2000-10-17 Thread Warrick, Mark
-- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business Email: [EMAIL PROTECTED] Business URL: http://www.fusioneers.com ICQ: 346566 ---

Re: browser detection

2000-06-01 Thread Mike Hughes
Hello Britta, I use this code to detect the browser on the server side, it may work for you <-- code >

RE: browser detection

2000-06-01 Thread Chris Evans
Lentz [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 01, 2000 8:58 AM To: [EMAIL PROTECTED] Subject: RE: browser detection > From: Britta Wingenroth [mailto:[EMAIL PROTECTED]] > > This is the idea: I need to write an "if" statement based on if netscape is > being used. I

RE: browser detection

2000-06-01 Thread Lon Lentz
> From: Britta Wingenroth [mailto:[EMAIL PROTECTED]] > > This is the idea: I need to write an "if" statement based on if netscape is > being used. I would like to use the HTTP_USER_AGENT like this: > > > > This is IE: Browser is Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0) This is