internet explorer problem with a javascript page
I have made a page The url here It works fine in ff/chrome But the whole login form and reg form are not displayed in ie and the shout box is not working in ie... Any help Thanks Pradyut India ...
I have made a page The url here It works fine in ff/chrome But the whole login form and reg form are not displayed in ie and the shout box is not working in ie... Any help Thanks Pradyut India ...
I've been developing a site that uses the Google Fonts API. It's great, and supposedly has been tested in IE, but when testing in IE 8 the fonts simply don't get styled. I included the font, as Google instructs, thus: <link href="http://fonts.googleapis.com/css?family=Josefin+Sans+Std+Light" rel="stylesheet" type="text/css" /> and...
Can you use Html DOM in a Internet explorer plug-in to... 1) write/Auto fill in a form? From variable value assigned by your program. 2) Read values in label? Textboxes? And use them in your program? Or better to just write a winform with web browser control? ...
Is the website able to determine if a particular IE add on has been installed or not? How do you have the web page detect the IE add on? ...
I have the following code: if (window.XMLHttpRequest) { xmlHttp = new XMLHttpRequest(); } else // for older IE 5/6 { xmlHttp = new ActiveXObject('Microsoft.XMLHTTP'); } var url = 'payment/code/xmlrelay.php?t=rates&id=' + str; xmlHttp.open('GET', url, false); xmlHttp.send(); xmlDoc = xmlHttp.responseXML; xmlResult = xmlDoc.getE...
I have (http://science.users.anapnea.net) a section of html/js that isn't playing well in other browsers. The section in question is an anchor tag that calls a jquery $.get function: $.get("info.html", function(data){ $('#page1Content').html(data); }); This is doing nothing in IE, but works fine in FF and Chrome. The only hint of...
This function executes during the forms onSubmit, and works fine in Firefox and Chrome, but not in IE. I suspect it's indexOf, but I cannot seem to find a way to get it to work. function checkSuburbMatch(e) { var theSuburb = document.getElementById('suburb').value; var thePostcode = document.getElementById('postcode').value; var array...
Hi folks, i am using the autoresize plugin which increases the height as users type in stuff. It works great on FF/Chrome, but the behavior is messed up on IE (see screenshots below). Essentially, the textbox, when resized, does not push the rest of the buttons down, which is weird, given that nothing on the page is absolute positioned....
I've developing a website in localhost. I'm using jquery, some javascripts, CSS and HTML. When I try to load the site with IE, an error message pops up saying "Out of memory at line 12". I clicked "OK' and it continues working fine. The message however doesn't show up in Chrome or Firefox. Can anyone tell me why is it so. How can i fix i...
Hello, Our product is installed in Windows machines all over the world, with our latest version we need to ensure that Internet Explorer is upgraded to version 8. Is there an executable that we can distribute that will work on any windows (starting from XP and 2003) and on any language, and will ensure the correct setup is downloaded and...
Hi, I am using below code to apply different background color to odd and even rows: $('#tbl tr:odd').css('background-color', '#ECF6FC'); $('#tbl tr:even').css('background-color', '#ffffff'); But odd and even rows show up differently in FF and IE, for example: FF: IE: As can be seen, in FF, first row turns out to be white while...
I have designed a site for my team using drupal and it works and looks great in FF but when i open it in IE the page looks as if it is murdered by someone. The alignment is screwed up totally. What can i do to fix it. ...
Hi, I have this textarea (it's expaned, after clicking on a specific button) which is supposed to be over that text-inputfield. In FF and Chrome, it's working. But not in IE(6+7). Does anyone have a clue, where the problem is and how I could solve it? <html> <head> <style type="text/css"> .Tbl { width: 100%; } .Col1 { width: 10%; } .Co...
Given the following C# code: public object CallJavaScriptFunction(string functionName, params object[] args) { object script = Document.Script; var result = script.GetType().InvokeMember(functionName, BindingFlags.InvokeMethod, null, script, args); return result; } And the following client-side Jav...
Is it possible to retrieve stored credentials from the browser cache if you use auto-complete to fill in a form? I believe that the data itself is encrypted. ...
A friend and myself are trying to workaround IE (7/8). We have built a canonical example here: http://www.mathgladiator.com/share/ie-select-bug-hover-css-menus.htm Using a CSS menu, we would like to have selects in them. However, in IE, the menu goes away when you interact with the select box. We believe this has to do with a bug in ho...
Programs for MS Windows can associate some protocols with them. So when you click in browser, registered program for protocol "myprotocol" will be opened. Like "mailto:[email protected]" opens your Email programm. I have a website and want to know if visitor of my web site have registered some protocol in his system or not. So when he clic...
First of all, I am aware of this question: http://stackoverflow.com/questions/1095102/how-do-i-load-binary-image-data-using-javascript-and-xmlhttprequest and specifically best answer therein, http://emilsblog.lerch.org/2009/07/javascript-hacks-using-xhr-to-load.html. So accessing binary data from Javascript using Firefox (and later ...
I think I've found a bug in IE's (IE8) handling for the for-in javascript statement. After several hours of boiling this down to a small example, it looks like IE specifically skips any property called "toString" in a for-in loop - regardless of whether it is in a prototype or is an "Own Property" of the object. I've placed my test cod...
I'm attempting to use selenium-dotnet-2.0a5 to iterate through many tables, and have to use xpath. e.g; var tableRows = _table.FindElements(By.TagName("tr")); foreach (var row in tableRows) { row.FindElements(By.XPath("td|th")); //iterate through tablecells and get text of each } Average times to iterate through about 50 ro...