internet-explorer-8

How to get data from another page (different servers)

I want to make a IE8 web slice who will show remaining amount of students "food credit". In our country we have web page where we can see ammount www.cap.srce.hr/ProvjeraSaldo.aspx. When I fill textbox with my card number i recieve remaining amount. Now, i want to speed that process with ie8 web slice. So is it possible to get data from ...

Can't see images used in slideshow or other jQuery plug-ins in Internet Explorer 8

I am getting a weird error. I can see images in slideshow, lightbox, etc. in Firefox and Chrome but in Internet Explorer 8 there are no images. Something is wrong with JavaScript/jQuery I think. I am using jQuery 1.4.2, jquery.flow.1.2.min.js jquery.bgpos.js jquery.easing.1.3.js jquery.lightbox-0.5.min.js jquery.validate.js cufon-yui....

Why doesn't this jQuery snippet work in IE8 like it does in Firefox or Chrome (Live Demo Included) ?

I asked for help earlier on Stackoverflow involving highlighting spans with the same Class when a mouse hovers over any Span with that same Class. It is working great: http://stackoverflow.com/questions/2709686/how-can-i-add-a-border-to-all-the-elements-that-share-a-class-when-the-mouse-has $('span[class]').hover( function() { $...

Javascript's onclick event causes the page to reload in ie-8, but not in firefox, safari,chrome and opera?

Hello, I have an onclick event attached to a button. Clicking the button adds a text box to the target div. the code is: onclick="return addBlank("param1","param2"); The function addBlank does not have a return statement. Clicking on the button behaves as intended in firefox, opera,chrome and safari - i.e., an empty text...

Javascript function works in FF, Opera etc, fails in IE8 - how to fix

I have the following function (worked in IE6 but is broken in IE8) function implode() { var str = ''; for(item in globvars) //<- IE8 wets itself here ... str+= '\n' + globvars[item]+';'; return str+'\n'; } It seems an innocuous little function, but IE8 dosent grok it. Can anyone show me how to rewrite this so it work i...

Internet Explorer Error

The main error shown in IE is : ' Could not complete the operation due to error 80020101.' The error is displayed when the ExtJS framework tries to load a page containing a Ext grid component through an ajax request. It works without problems in Firefox and Chrome. Another error which is shown by IE is 'Expected identifier, string or n...

IE8 web slice - CSS problem

Again me with IE8 web slice :) This time i have following problem. I created web slice for IE8 and created button for users where they can choice to add it to their browsers. Code is : <input class="add" type="button" value="Dodaj Xica web slice u IE8!" onclick='window.external.AddToFavoritesBar("http://localhost:51914/Home/GetWebSlice"...

IE 8 issue where window.close() is not occuring after winword.exe is fired to print a document

In my web application, a popup page is called using window.open javascript. There is a Print button on the page that has an onclick event that calls a printchecks() function. The code in the printchecks() function is function printchecks(){ window.print(); window.close(); } Issue is that the window.print brings up the prin...

FileUpload ASP.NET control not working under Windows 7

I have a User Control that contains a System.Web.UI.WebControls.FileUpload control as well as a button to 'Submit'. When the button is clicked code similar to the following is executed: If FileUploadControl.HasFile Then 'Save the file and do some other stuff End If This code works just fine with Windows XP. However, if I run it f...

How to hide nested form from jQuery under IE8

An html segment with a div containing a form containing a table: <!DOCTYPE html> <html> <!-- xmlns="http://www.w3.org/1999/xhtml" lang="en" --> <head> <style type="text/css"> #content{position:relative} table {border-color:#999;border-style:solid} </style> <script type="text/javascript" src="http://ajax.googleapis.com/aj...

Phantom "border" around corner of image displayed in IE8

I have a row of images contained in a single div. These images are jpg images of single-word text (like "Home" that the user clicks on to navigate to different pages. When I run the site on ie8, a small, horizontal dash appears at the lower right corner of each of these images. This dash is active in that if I click on it, it activate...

IE8 CSS and html vs IE7

Pardon any brashness here, I'm about at my wits end looking for answers. I am looking for a list (if one exists) or some resource guide of specific html and css tags that have changed from IE7 to IE8. Specifically, I want to see something like "this code works in IE7 but not IE8... here is the broken tag's equivalent to make IE8 work."...

MooTools events not firing in IE8

I have a Mootools asset created like so: // Create a new asset var asset = new Asset.image(path, { title: this.language.download, events: {click: this.download.bind(this, link)}, }); I have a method of a MooTools object defined as such: download: function(e) { // The path to download console.log('download: ' + e); },...

Force "Internet Explorer 8" browser mode in intranet

There are "Internet Explorer 8", "Internet Explorer 8 Compatibility Mode", and IE7 mode in IE8. However, the default setting in IE make all intranet website use "IE8 Compatibility Mode" even I have setted doctype, the meta tag, http header as suggested to force it into IE8 mode. I have <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 T...

IIS7 & IE8 - Pages rendering differently on same versions of IE8?

I have an ASP.NET (framework 2.0) web app running under IIS7. When I run the app on the server, using IE8, localhost the app runs the way it is supposed to. When I run the app in Visual Studio 2008 (framework 2.0) it runs the way it is supposed to. But when I try to run the app from another computer it renders incorrectly. Same versions ...

Ajax Control Toolkit not working on IE8

hi, I am using Ajax Control Toolkit version 40412 in my asp.net 4.0 website. When I run the page in Firefox it is working good but I run the page in IE8 it is not rendering toolkit controls and putting "//" characters on the bottom of page.This is happening with every control of toolkit. What can be the problem with this, any ideas? ...

Mootools 1.2.4 delegation not working in IE8...?

Hey there everybody-- So I have a listbox next to a form. When the user clicks an option in the select box, I make a request for the related data, returned in a JSON object, which gets put into the form elements. When the form is saved, the request goes thru and the listbox is rebuilt with the updated data. Since it's being rebuilt I...

How do I stop IE8 session sharing?

Hi, I'd like to stop IE8 from sharing my sessions in one of two ways (or both if possible): Through configuring the browser to always do this (so I can force my users to configure their browsers in this way). Through code in my web application. Thanks. ...

Closing Window in IE8

I have a some javascript that calls is calling for a popup (media player) to load. That works But I want the parent page to close or not even appear to have opened. This works great in Firefox. Code is: window.open("radio.html","Levante_Radio_Live","width=323,height=281,scrollbars=no,menubar=no,location=no",); window.close(); ...

Javascript callback function does not work in IE8!

I have a callback function in my open social application which fetches remote date. This works perfect on Chrome and Mozilla browsers but not in IE8. Following is the example for the same, help will be appreciated: This function: gadgets.io.makeRequest(url, response, params) makes the callback call and following function process the re...