David Peterson
David Peterson

Reputation: 552

javascript or jquery: find out weather a page have openned with internet explorer object or not?

our company has a website with so many pages and some of these pages can be open with internet explorer object inside our desktop application. I'm wondering if there any way to find out whether a page is opened with external browser or with the IE object?

Note that we want to detect this with some code inside our pages aad also we want to seperate ie object requests from external IE request.

Upvotes: 0

Views: 178

Answers (1)

user850234
user850234

Reputation: 3463

You can check using $.browser.msie to detect if the page is opened with internet explorer. This will return true when the page will be opened using internet explorer and then you can perform your task.

Upvotes: 3

Related Questions