Click here to Skip to main content
Page 1 of 1
Page Size: 10 · 25 · 50


Tag filtered by:  IE10 [x]
Tip/Trick 10 May 2013   license: CPOL
A simple Registry change will enable IE to display JSON responses.
Question 2 May 2013   license: CPOL
Peace be upon you!We have a huge HMI and SCADA web application which provides data collection facility from almost any plant floor and provides visualization and analysis facility over it.The product is based on three technologies. Front end and server side is in JS, JAVA and database...
Question 30 Apr 2013   license: CPOL
Hi, I am creating CDATA section as a child node. I have seen below mentioned behavior with Firefox, IE8,9, and 10Using below codeif (window.DOMParser) xmlDoc = domParser.parseFromString(xmltext, "text/xml"); else //IE xmlDoc.loadXML(strXML); var elem=...
Question 19 Apr 2013   license: CPOL
hope it makes sense:I have situation something like below. Two radio button with onactivate,ondeactivate,onlclick event. For simplicity i mention it as below but in actual code the entire DOM is construction using Javascript and at various points these events are attached.
Question 18 Apr 2013   license: CPOL
I working on VBA with Excel, Which working fine with windows OS (32 bit) and office 2007(office 32 bit) When i started work on Windows 8 (64 bit) and office 2010 (64 bit) i was unable to run the application so for below line of code i added because of excel office 2010 is comes with VBA7....
Answer 12 Apr 2013   license: CPOL
Check out these two possible solutions:http://connect.microsoft.com/VisualStudio/feedback/details/662275/asp-net-user-agent-sniffing-and-ie10-internet-explorer-10and http://support.microsoft.com/kb/2600217[^]As well as Scott Hanselman's article which explains it all...
Question 11 Apr 2013   license: CPOL
Hi,If HTML page has multiple frames and each frames opens an HTML page and since each of this html pages has different Doctype, then how browser would decide the Mode.My actual requirement is to keep my webpages in quirks mode but i have a frames where i make use to render third party UI...
Answer 9 Apr 2013   license: CPOL
First of all, this is a good thing. "Quirk mode" and other lame must die. But you should support all major browsers, not just IE. As I just said, remove all incompatibilities and do everything according to W3 standards, but you design should only depend on the features surely implemented on all...
Question 9 Apr 2013   license: CPOL
one of my webpage has issue rendering in IE8 standard.It is rendering fine in IE9 standard, IE 5 quirks mode. Issue is I am creating around 8 span elements in JS which is rendering properly in IE9 standard but in IE8 standard they are not visible but i verified in Developers tool that they...
Answer 26 Mar 2013   license: CPOL
I don't think you can do anything about it.Are you sure you really detected the leak? How? Not all methods are reliable. Anyway, if you do have a leak, you cannot prevent it. All complains go to Microsoft :-(—SA
Question 26 Mar 2013   license: CPOL
I found a memory leak in the following code (the else block) if (browser == "Microsoft Internet Explorer"){ if (vers
Question 25 Mar 2013   license: CPOL
Hi,We are using radspell from Telerik controls(2010.1.415.35).Here the issue is spellcheck is not working in IE 10.Its working fine in all other browser(not sure about IE 9).But in IE 10 it is not even displaying.But after a few clicks, the popup window shows up, but is blank. ...
Article 25 Mar 2013   license: CPOL
Unifying touch and mouse: how Pointer Events will make cross-browsers touch support easy
Question 22 Mar 2013   license: CPOL
I am facing a problem on IE10 with .NET Framework 3.5 SP1It is properly working on the IE9 version as well as on IE10 Compatibility mode. But on the IE10 standard mode, it is giving below error. SCRIPT5009: '__doPostBack' is undefinedIE10_error screenTried the solution, but didn't...
Answer 21 Mar 2013   license: CPOL
Hello,Below is a small demo HTML. It shows how to process XML using a mix of JQuery & JavaScript.var xml = '';var xmlDoc = $.parseXML( xml );var znodes = $("z",...
Question 21 Mar 2013   license: CPOL
I need to select all 'z' nodes using jquery.I already know implemntation using Xpath(supported by FF,chrome) and Msxml2.DOMDocument(selectNodes--used in IE)I basically want to...
Question 18 Mar 2013   license: CPOL
I testing on IE 10 standards mode.I have a Login.aspx page which is in Login directory(i.e Login/Login.aspx). I do response.redirect to a page Default.aspx which is a page in root directory(ie.Response.Redirect("../Default.aspx",true);).Also tried ~/Default.aspx to navigate to root. But instead...
Article 13 Feb 2013   license: CPOL
The increasing power and complexity of these apps means developers need better tools like Error.stack for handling errors and diagnosing bugs. In this article, I’ll show you some simple debugging techniques to help save you time.
Question 4 Feb 2013   license: CPOL
Hi all,The date picker is not working in IE10 where as it is working in IE8.The following code is there in cal.aspxThis aspx is called through a javascript.When I...
Article 21 Jan 2013   license: CPOL
This articles shows you how to put your site logo right next to apps on the Windows 8 Start Screen.
Article 18 Jan 2013   license: CPOL
Adapting Your Site to Different Window Sizes.
Tip/Trick 12 Jan 2013   license: CPOL
The article gave a method to update mpc.htc code to js because IE10 standard mode doesn't support htc (Html Components).
Tip/Trick 10 Jan 2013   license: CPOL
IE10 standard mode doesn't support htc (Html Components), so we have to update .htc code to js.
Question 3 Jan 2013   license: CPOL
Hi All,I am newbie in javascript. I want to check that whether website is added or not added to compatibility view settings of ie browser . I am not able to change any server side(.asp files) code. so i have to use javascript(i can edit .js file). I google for this, and get solution as to...
Answer 3 Jan 2013   license: CPOL
I doubt if you can read the list from the browser - that would be a security hole, exposing a list of sites the user expects to visit.You can find out if the current page is using compatibility mode though http://msdn.microsoft.com/en-gb/library/ie/cc196988(v=vs.85).aspx[^]
Answer 14 Oct 2012   license: CPOL
I can't tell what szTemp is used for, but If you are trying to open a web page, just simply type:HINSTANCE hInstance;hInstance = ShellExecute(NULL, TEXT("open"), TEXT("http://www.google.com.sa/"), NULL, NULL, SW_HIDE);This code invokes the default web browser, many people use...
Answer 14 Oct 2012   license: CPOL
Try this:STARTUPINFO si = {0};PROCESS_INFORMATION pi = {0};si.cb = sizeof(cb);si.dwFlags = STARTF_USESHOWWINDOW;si.wShowWindow = SW_HIDE;if(::CreateProcess( NULL, // LPCTSTR lpApplicationName, _T("\"C:\\Program File\\Internet Explorer\\IExplore.exe\"...
Question 11 Oct 2012   license: CPOL
Hi,SW_HIDE doesn't work with ShellExecute on windows 8 and Internet Explorer 10. Does any one has any clue on the same.I tried the below code.HINSTANCE hInstance = ShellExecute(NULL, _T("open"),_T("IExplore.exe"), _T("www.google.com"), CString(szTemp), SW_HIDE);Any help is...
Article 25 Sep 2012   license: CPOL
This article is about a basic implementation of HTML5 client/server chat application.

Page 1 of 1


Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid