From b08b126ef7f6dca662cf5d501e7eb67a11062b81 Mon Sep 17 00:00:00 2001 From: Joe Grigg Date: Thu, 26 Apr 2012 14:45:27 -0600 Subject: [PATCH] updating the readme file to show msie changes --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index ba6e427..c710461 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,13 @@ if (bowser.webkit) { // do stuff with safari & chrome } ``` +IE Browsers will report their version along with if the browser is in compatability mode + +``` js +if (bowser.msie && bowser.compatability) { + // beware compatability mode +} + Ender installation -----