Strange silverlight behavior in chrome lately Strange silverlight behavior in chrome lately google-chrome google-chrome

Strange silverlight behavior in chrome lately


This is a known bug of Chrome 32. It will be fixed in the next version. See https://productforums.google.com/forum/#!msg/chrome/9QqVfMG3H4w/xlN7t5qh63sJ

The plugin object is displayed only if you load the page in the default tab of the browser. In any new tab, you must resize the window (or press F12 twice).

In the meanwhile, you can open your links in a popup window when Chrome is detected.

For instance :

if(/chrome/.test(navigator.userAgent.toLowerCase())) {    var links = document.getElementsByTagName("a");    for(i = 0; i < links.length; i++) {        links[i].url = links[i].href;        links[i].href = "javascript:return false;";        links[i].onclick = function(e) {            window.open(e.target.url, "_blank", "height =" + screen.height + ",width=" + screen.width).moveTo(0,0);        };    }}