internet-explorer-10

IE10 find first button on page and trigger click event on input submit

扶醉桌前 提交于 2019-12-19 06:01:12
问题 sorry about title, i know its messy but i dont know how can i describe this situation. we have an input field. but no form element. here is the code <input name="search" id="search" onkeypress="SearchBox(this.value);" type="text" value="Search"/> <input name="searchbutton" align="left" class="okbutton" id="searchbutton" onclick="SearchBox(search.value);" type="button"/> SearchBox function checking keycode and if it is 13 (enter button charcode) sending search request. this code works in IE8/9

css url() not recognized in internet explorer 10

谁说胖子不能爱 提交于 2019-12-19 02:14:50
问题 I have this line in my CSS: .ui-icon-zoom-in { content: url(images/16x16/ZoomIn.png); } Which I am using with jQuery UI Button widget like this: $("#zoomin").button({ text: false, icons: { primary: "ui-icom-zoom-in" } }); In Chrome, I can see the image centered within the button. However, in IE10, I do not see the image. Am I missing something here? 回答1: The content property is only valid on :before and :after pseudo-elements. You should change it to: .ui-icon-zoom-in { background: url(images

Make a whole div clickable with working :active css rule in IE10

Deadly 提交于 2019-12-18 14:15:28
问题 I'm designing a clickable panel for an html app which contains multiple text elements and images. From what I understand this is generally done with a div. Something like this: <div class="myButton"> <h2>Text</h2> <h3>Some more text</h3> <img ...> </div> With a bit of styling and hooking up the click event this works fine but I am having problem with styling the active state: .myButton { cursor:pointer; } .myButton:active{ -ms-transition-duration: 0.2s; -ms-transform: scale(0.95); } In this

Will/Does IE10 Support Touch Events?

≡放荡痞女 提交于 2019-12-18 11:56:19
问题 I'm looking at doing a project that would target Internet Explorer 10 using a touch screen. I don't currently have a touch screen handy, but need to know if Internet Explorer 10 does or will support DOM touch events. 回答1: Update : Touch Events are in development in Internet Explorer. While IE10 will not support the touchstart and touchend type of events, it will support an arguably superior model consisting of Pointers. These generic pointers capture input from pens, mice, and fingers. A

What is the user agent string for surface rt?

青春壹個敷衍的年華 提交于 2019-12-18 11:43:19
问题 I'm trying to determine the user agent string for surface RT for testing purposes. 回答1: Just do some Google'ing and you will find your answer. Internet Explorer 10 User-agent string Internet Explorer 10 on Windows RT: Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; ARM; Trident/6.0) Update after comment below The link above also states: Identifying touch-enabled systems Internet Explorer 10 introduces the "Touch" UA string token. If this token is present at the end of the UA string, the

RedirectToAction throws 400 error in IE10

Deadly 提交于 2019-12-18 07:09:09
问题 I have an ASP.Net MVC3 site using RedirectToAction like so: return RedirectToAction("Index", interstitialController, new { userName = model.logInInfo.UserName, redirectString = redirectUrl, authToken = login.authenticationToken, reason = login.reason, status = login.status, provider = login.provider }); For some reason this is causing IE10 to generate this as a request: https://site.com/(F(7vkS9Als2GF4acdwa9JNTwHsOkeFIsGcdMGU-FIT0X1IC3UwpkeZrPvTp1WmCbC7aY890yhpaeS4dadGjjUrym9Z_UOHYUUezRjD

Running jQuery crashing on IE10/Win7

眉间皱痕 提交于 2019-12-18 05:55:57
问题 I am for the moment just including jQuery (1.9.1, but old 1.8.3 behaved the same way) in my ASP.net webpage (Site.Master file actually). Everything worked fine running under IE9/Win7-64 but ever since I upgraded to IE10 (still Win7-64), now when I run the webpage locally, selecting Internet Explorer and run from within Visual Studio, I hit an exception. The exception is on line 4224 of the jquery-1.9.1.js file. // Opera 10-12/IE8 - ^= $= *= and empty values // Should not select anything div

Shouldn't “X-UA-Compatible IE=edge” header override “Display intranet sites in Compatibility View” in IE10?

倖福魔咒の 提交于 2019-12-18 01:32:11
问题 I have a simple HTML5 / ASP.NET website that I started testing in IE10 today since it released for Win7. This is an intranet site within my organization, and I believe awhile back there was a group policy deployed to enable the Display intranet sites in Compatibility View by default. The thing I noticed today in testing was that even though I am adding an X-UA-Compatible IE=edge HTTP header (via my web.config), the site is showing in IE as: Browser Mode: IE10 Compat View Document Mode:

Windows Phone 8 IE10 Javascript debugging

穿精又带淫゛_ 提交于 2019-12-17 22:23:18
问题 IE10 has some wonderful enhancements in the HTML5 compliance area but remains a bear to develop JavaScript HTML5 when running on the WP8 as there is no way to debug the app except console messages. Is there a remote debugging experience available for IE10 running on WP8 like the WebKit phone browsers have(see my video at http://www.youtube.com/watch?v=GNAjzFpNEj4 for example). When this is in place with a USB cable to desktop Safari debugging Javascript apps on IOS is easy as breakpoints can

Flex-grow not working as expected (flex items don't have the widths I expect)

你离开我真会死。 提交于 2019-12-17 21:32:36
问题 JSFiddle I'm trying to use flex CSS properties to fit a set of elements into a neat little box. It looks exactly how I want it in IE10, but Chrome shows it very different. I basically have: Container Select box ( flex:5 ), should be about wide enough to show the D , but not much wider. Text input ( flex:10 ), should take up a little more than half the width of the contains Confirm button ( flex:6 ), should be wide enough to contain its text, but not much more. It works fine in IE, but in