internet-explorer

Custom checkboxes

Hey there, I've coded a little simple script that allows me to use custom checkboxes. It works fine on FF, Opera and webkit based browsers but, as usual, IE is giving me headhaches. The behaviour on IE is really strange, it seems like it's checking and unchecking random boxes on each click. Well, maybe it's not but I really don't see a...

$("#my_div").html('value'); not replacing in IE7.

I'm using a simple JQuery call to replace some HTML in a DIV tag after an AJAX call. $("#my_div").html('value'); This works great in the other browsers, but in IE it is just adding to the DIV instead of replacing the HTML. Any ideas why that would happen? ...

onmouseover doesn't work when using javascript to add img tag on IE

I need some javascript code that dynamically adds an img tag to a div, and the img tag needs onmouseover and onmouseout handlers. I have it working on Firefox. But it doesn't quite work on IE. On IE, the img tag is added, but the onmouseover and onmouseout handlers are not active. Here's the code: <body> <div id='putImageHere' />...

CSS working only in Firefox.

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www.wdmadvertising.com.au/preview/cfs/i/btn-search.gif" /> <input type="hidden" name="cx" value="012437731193502990522:kx_jllw0ckq" /> <input type="hidd...

IE 6 css issues with absolute positioning

I have a absolute positioned element with proper top and left. On page load the element doesn't show up but whenever I apply any css from IE Dev Toolbar it shows. Can anyone please help me finding a solution for it. Note: I already tried giving relative position to its parent. ...

Internet Explorer blocked file download; file of "Unknown File Type"

I'm developing a front-end to a Rails application. In cross-browser testing, I immediately discovered that Internet Explorer (apparently all modern versions, but at least IE 7 and IE 8) is not correctly interpreting a file I'm trying to load via AJAX (with jQuery) as JavaScript. A file download warning appears and the user needs to confi...

Determine Mobile Internet Explorer version

I need to determine the version of Mobile Internet Explorer on a Windows Mobile 6.1 device. So that I can report the same user-agent string as is being used by Mobile Internet Explorer. The user-agent string format has recently been changed to include version information. My application is running on the Windows Mobile device creating...

Simple problem: Safari and CSS/Javascript Rollovers.

Basically I have a bunch of IMG tags wrapped in a bunch of divs, and some javascript to make them do rollovers. The page functions beautifully in IE and in Firefox, but Safari gives: "TypeError: Result of expression 'ImageNavigateForum' [undefined] is not an object." Where ImageNavigateForum is the ID tag of the 'img'. (a simmelar err...

ActiveXObject is not defined

My program is getting employee details in web page using javascript. This is successfully working in IE5,6,8. but not working Mozilla Firefox. Please Help me... Thanks in advance My source code is: <script type="text/javascript"> <!-- var adOpenDynamic = 2; var adLockOptimistic = 3; /* Path of database. */ var strDbPath = "..\\SRVGd...

Image rendered with wrong colors in IE8

I have a gradient image as a PNG (no transparency) in a web-page. By taking a screenshot of Chrome showing the page and cropping the image from the page, I see the exact same colors are drawn as the image contains... put the screenshot next to the image in Paint and they are identical. But when I do the same with the page rendered in IE...

ckeditor image button and IE

Hello, has anyone had any experience with this editor? Ive been integrating this editor into a web application i am working on, and generally it has been going smoothely, except for one problem (is it a surprise that it involved IE?). When the user clicks on the image button in anything except IE, every works as expected. When the use...

Get a deactivated scrollbar in Firefox

I have a Javascript tabbed dialog whose pages have different heights. Some of them are taller than the browser window. In Internet Explorer, there is always a scrollbar to the right. When it is not needed, it is greyed out. The page dimensions stay the same and there is no problem. In Firefox, the Scrollbar is hidden completely when no...

TinyMCE in Internet Explorer does not load

My TinyMCE init looks like this: var tinymce_advanced_options = { mode : "textareas", theme : "advanced", editor_deselector : "mceNoEditor", theme_advanced_resizing_min_width : 500, theme_advanced_resizing_max_width : 800, plugins : "autoresize,paste,preview,safari,table,contextmenu,pa...

is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7?

is there any script which can stop to show ALT="text" as a tooltip in IE 6 and 7? ...

IE doesn't wait for result of $.post(

Hi! I'm developing an upload form. It works fine with Firefox, but not with IE. Here is the code: if(hasError == false) { $(this).hide(); $("#uploadForm").append('show an image'); $.post("_upload_form_process.php",{ filename: filenameVal, datasetdesc: datasetdescVal, datasetname: datasetnameVal}, function(data){ ...

IE7.js vs Whatever:hover.htc vs Son of suckerfish.js ?

If I'm already using Dean Edwards's IE7.js for IE6 then do i need to use Whatever:Hover htc and javascript(which we use only for IE6 hover) for Son of Suckerfish menu ...

CSS Problem with Overflow width div Part 2

Hi everyone, Related to this post stackoverflow.com/questions/1736910/css-problem-with-overflow-with-div The awser helped me ie: adding display: inline; i wanted to add some div into the div ".div-image" for title and description: i found that it worked if i replace display: inline; with display: inline-block; but guess what, it do...

Enable webpage for IE Search Provider

When we visit Stack Overflow, the IE Instant Search Dropdown button is turning orange indicating that SO can be added as a search provider. What code should I put inside my web page for IE to detect that it's a compatible search web page? Thank you! ...

Wrong float warping in IE7

Hello, here's test page, which looks differently in IE7, while OK in Firefox & Opera. Looks like FF & Oprah are adequate about .twoColLiqRtHdr #mainContent { margin: 0 20px 0 10px; } right margin and place text accordingly (text fills space under sidebar), while IE uses #sidebar's left border as margin, and, as a result, that s...

Enumerating open tabs in Internet Explorer?

I'd like to find a way to enumerate the open tabs (and corresponding URLs) of the open tabs in Internet Explorer. I've found this question, which suggests that it's not possible to do this in general, but I'm looking specifically at solutions for IE7 and IE8. I'd prefer Win32-only solutions (I don't want to take a dependency on .NET, if...