Link to home
Start Free TrialLog in
Avatar of Garbonzo_Horowitz
Garbonzo_HorowitzFlag for United States of America

asked on

Microsoft Lync Presence Javascript Name Control Stopped Working On IE 11

Our company has Microsoft Lync we use the JavaScript Name control to add Presence functionality to our ColdFusion web pages. This is not using dot net. Now we are finding out that the javascript presence functionality is no longer working with IE 11. It's working just fine in IE 8 and IE 9 but not 11. Does anybody know the workaround for this?  Here is the control code: There is tons of info about Lync but only when used with sharepoint or dot net.
SOLUTION
Avatar of Alexandre Simões
Alexandre Simões
Flag of Switzerland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
another technique, just give it a try, it may wrk

if (“ActiveXObject” in window){//IE11
nameCtrl = new ActiveXObject(“Name.NameCtrl”);
}
Avatar of Garbonzo_Horowitz

ASKER

I'm splitting points on this one.
ActiveX objects are now handled differently in IE 11 so now it has to be declared differently as myselfandhawa points out. Thanks to both the experts for all the help!