Skip to content

Instantly share code, notes, and snippets.

@devluis
Created August 9, 2013 16:05
Show Gist options
  • Save devluis/6194846 to your computer and use it in GitHub Desktop.
Save devluis/6194846 to your computer and use it in GitHub Desktop.
Detectar navegador usando el User Agent con coldfusion
<!--- Verificamos el user agent del navegador del usuario --->
<cfif #HTTP_USER_AGENT# CONTAINS "OptimizedIE8">
<!--- Código a ejecutar --->
<cfelse>
<!--- Código a ejecutar --->
</cfif>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment