Kiernon Reiniger's Library tagged → View Popular
http://msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx
-
The X-UA-compatible header is not case sensitive; however, it must appear in
the Web page's header (the HEAD
section) before all other elements, except for the title
element and other meta elements.
Gotcha: WebKit (Safari 3 and Google Chrome) Bug with ASP.NET AJAX
Adding Visible="false" to this (and the other validators) on my user
control unfroze the UpdateProgress. My first thought was that I must have
reached a limit in identifier name lengths because my validator was nested very
deeply. I proceeded to rename a few layers to make the name shorter. This
changed nothing. I then discovered how to enable a
FireBug-like
tool in Safari called Web Inspector
. This helped me discover an obscure
JavaScript error.
Compatibility patch for WebKit (Safari 3) 3.5.21022.8 MicrosoftAjax.debug.en-US.js - ASP.NET Forums
Sys.Browser.version =
parseFloat(navigator.userAgent.match(/
Safari\/(\d+(\.\d+)?)/)[1]);
Sys.Browser.name =
'Safari';
}
else if (navigator.userAgent.indexOf('Opera/') > -1)
{
Sys.Browser.agent = Sys.Browser.Opera;
}
To:
Sys.Browser = {};
Sys.Browser.InternetExplorer = {};
Selected Tags
Related Tags
Sponsored Links
Top Contributors
Groups interested in compatib...
-
mobile phones, PDAs and other handhelds — CENTRIM
Notes relating to use at CE...
Items: 47 | Visits: 25
Created by: Graham Perrin
Diigo is about better ways to research, share and collaborate on information. Learn more »
Join Diigo
