Quantcast
Channel: Dynamics User Group
Viewing all articles
Browse latest Browse all 15740

Code Behind for Cross Browser Support after RU 12

$
0
0

hi friends,

The below sample function is used by Microsoft to detect the browser using with Mscrm.Utilities.

function detectBrowser() {
    if (Mscrm.Utilities.isIE()) {
        alert("This is IE");
    }
    if (Mscrm.Utilities.isFirefox()) {
        alert("This is Firefox");
    }
    if (Mscrm.Utilities.isChrome()) {
        alert("This is Chrome");
    }
}

To know more about this article see the below link.

The below link to know about the code behind support for crm 2011 after RU 12

http://congruentdynamics.blogspot.in/2013/03/detect-browsers-in-which-ms-crm-is.html

Hope this will be very helpful for the developers.

 


Viewing all articles
Browse latest Browse all 15740

Trending Articles