> I have a page which is written with JS 1.2.  I would like to 
> write a portal
> page which will test for JS on, and JS 1.0 and 1.1, and have one 
> conditional
> CFLOCATION  for (JS 1.2 and have it turned on,) and send everyone else to
> the text version of the page.  Is there a custom tag to do this, or does
> anyone have a snippet of code they would be willing to share?

Why not just do it with JS?

<head>
<script language="Javascript1.2">
<!--
self.location="JS1_2Page.cfm";
//-->
</script>
<script language="Javascript1.1">
<!--
self.location="JS1_1Page.cfm";
//-->
</script>
</head>
<body>
You're running an old crumbly browser, so upgrade!

Philip Arnold
ASP Multimedia Limited
T: +44 (0)20 8680 1133

"Websites for the real world"

**********************************************************************
This email and any files transmitted with it are confidential and 
intended solely for the use of the individual or entity to whom they 
are addressed. If you have received this email in error please notify 
the system manager.
**********************************************************************


------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to