internet-explorer

ASP.NET LinkButton Tooltip gets overriden by image alternate text

I'm using a lot of LinkButtons in my web application with text and images inside them. All LinkButtons are set with a ToolTip and all images inside the LinkButtons are set with an alternate text. <asp:LinkButton CssClass="button button-input" ID="btnSearch" runat="server" CausesValidation="False" ToolTip="Search"> <img id="imgSearc...

IE6 Z-Index help

Hi, please take a look at the following website: http://www.solidcamxpress.co.uk/ If you look at it in IE6 (try IE Tester if your running Vista or 7) you will notice that the dark grey masthead appears behind part of the panel, and the top of the main image is chopped off. I'm guessing this is a problem with the z-index which IE6 and 7 ...

CSS 3 PIE: Not working inside an absolutely positioned (popup) element? Shifts on mouseover?

I am using the CSS 3 PIE include so that I can have rounded borders on my popup in IE. However, in IE, the popup is not rounded on the pageload, but when I mouse over it, it shifts to the top-left corner of the container, which is positioned absolutely, and THERE it has rounded borders. Here is the HTML: <div class="popupWrapper" i...

Problem with CSS hover drop-down menu in Internet Explorer

Hello Trying to create a website that looks as good in Internet Explorer as it does in Firefox is an incredibly difficult task. However, there is at least one bug in IE that is particularly perplexing for our team. The drop-down menu displays fine in Firefox and Chrome, but looks completely whack in Explorer. This image shows what the ...

Counting characters in IE sets cursor to end of text.

Hello everybody, I have a simple textarea with id:"describe_short". and the user should be able to insert a limited count of chars. so i wrote this little function: var max_char = $('#max_chars > span'); $('#describe_short').bind('keyup', function(){ var char_count = $(this).val().length; $(this).val...

Pure CSS Rounded Corners in IE6-8 (JQuery Accepted)

There are a lot of JQuery plugins to give rounded corners to browsers that dont support CSS3. They either don't work or have an ugly effect where you see it unstyled, and then the JS kicks in and finally makes them rounded. I am looking for a solution that renders rounded corners before visibility, looking for a seamless, or near seamle...

Problem with input type='file'

I am working on getting my website to display nicely in IE7. IE6 is already done, and also FF, Chrome, Safari, Opera etc... I am running IE7 in IETester if that makes any difference. I have a problem with an input type='file' in IE7. The button next to it (browse button) is very short with hardly any width at all. It is as if the butto...

"Warning: page has expired" error in IE when hitting "back" button

I have a classifieds website, and when posting a new classified users fill out a form offcourse. Then they hit the submit button, and a "verify" page appears which displays what they have filled out, and if it looks good, the users hit the "ok" button and the classified is posted. Here is a short example: <form action="verify.php" na...

Blank Ul not containing li shows padding and margin in IE

I have dynamically generated dropdown menu. On mouse hover It shows blank space if one tab do not have dropdown options. ...

Error: 'jQuery is not defined'

Hi, I have written a script with jQuery. It works with Firefox and GoogleChrome. Only with IE I have this error returned: 'jQuery' is not defined jquery-ui-1.8.4.custom.min.js, Row 10 Character 1 This is the head of my page: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Contattaci...

Print page shows unchanged checkbox in IE with DocType

Hi Guys, Strange problem. I have a simple webform where users can fill in text and check/uncheck some checkboxes. When this is printed to pdf or paper (or print preview) in IE (7 or 8) the checkboxes are printed unchanged. E.g. user sets a check, this is printed unchecked ... or with a pre-checked box with the user unchecked, is printed...

Switching jQuery UI tabs lose scrollposition in IE

The issue is not happening in Firefox, but the userbase is completely on IE. On the below page, there is a mock-up of three tabs, with their height set to a value and an overflow of auto. When you scroll to a certain position in the Tab One and switch to any other and come back, the scroll position is lost in IE (have tested only with I...

Website menu displays funny in all IE before IE 8

Hi all, I am new to CSS and have coded my first site with CSS. I will admit to not fully understanding CSS yet but would like to learn. I have heard about special XHTML & CSS coding being needed for older IE browsers but really don't know what CSS code is causing the trouble. The website is here. The problem is with the top and bottom ...

HTTP header 'Connection: Close' not sent by IE

I have a custom HTTP server that implements the HTTP 1.1 protocol. I have no problem using persistent connections, however, I never receive 'Connection: Close' from IE ( I haven't tested other browsers. ) Instead, the 'receive' times out because it seems IE closes the connection. What header from IE should I look for to gracefully clo...

Accessing Flash functions through jQuery

I use the following jQuery code to access functions in my SWF (FP 10.1 SWF embedded via SWFObject): $('#FlashApp')[0].someFunc(); This works fine in every browser.. except for Internet Explorer (surprise!). Surely, the point of jQuery is to make this code work across all browsers? I'd really rather not write extra code to check for IE...

IE css placement dont work as in FF

I can't believe the number of bugs I have to sort out due to IE6...Can somebody have a solution to all the IE problem in WordPress ? here is the file : http://www.notrepanorama.com/ you have to login to view it http://www.notrepanorama.com/wp-login.php login/ psw : test / test NOW in firefox (real browser) you see the red box (top righ...

How to debug Javascript registered with RegisterClientScriptBlock method

I have many existing scripts that I need to debug, all embededed from code behind. I would prefer to use Visual Studio 2008 client side debbging features, but breakpoints can only be set inside the aspx file withing a script block. The problem is I can't put a breakpoint on the scripts because they are all registered from the code be...

What is a good setTimeout interval for polling in a IE?

I have an ActiveX object (who source code I have) running in a browser (IE). The ActiveX object has a UI, which raises events. I want to respond to those events in the browser. I don't want to invoke JavaScript functions from the ActiveX object events: and therefore, instead, I want the JavaScript to poll a method of the ActiveX object ...

jQuery, html(), append() issue with IE

Hello i'm having problem writing data (html, contains tables) returned from an ajax request to a div. The code works on Chrome, firefox..except IE (tested on IE 8) I use the following code: function ajax_test(option) { $('.loading').fadeIn(); $('.roto_messages').empty(); $.get("options.php?i="+option, function(data) { ...

How do I style text input so it works on internet explorer?

I have tried EVERYTHING to be able to style JUST text inputs with internet explorer. Unfortunately IE doesn't support using [type=text] so that's out of the question. I even added support for http://ie7-js.googlecode.com to my webpage with <!--[if lt IE 9]><script src="http://ie7-js.googlecode.com/svn/trunk/lib/IE9.js"&gt;&lt;/script...