I have this odd problem with a third party script. On our site a popup window loads a demo of one of our applications when a link is clicked. The third party script is supposed to popup an additional window underneath at the same time or sometime thereafter.
(Yeah this sounds crazy but the popups must load in this way.)
Of course this ...
i am dynamically creating radio using jquery as shown belown.
but they value only selected in ff,ie8.
ie6,ie7 not selecting the values.
how can i select the radio button value in ie6/7.
rand=$("<input type='radio' ></input>");
rand.attr("checked","checked");
$(document).append(rand);
...
In the following example, the right side container appears to the right of the left side one in standards compliant browsers, but in IE6 the blue right side container appears below the left side one. IE6 effectively bumps it down because the parent container is narrower than the total width of the left and right side containers.
I hav...
I have a domain containing an iframe with contents from another domain. Inside this iframe are _top links. On IE6 nothing at all happens when you click them. I have prepared a minimal example of this. Please go to http://www.bemmu.com/static/top.html with IE6 to try it.
Edit: this only seems to happen if security level is "high" (or may...
I'm using the CSS based rollover "trick" that switches the background position of the element's background image on hover.
The CSS
#welcome #step1
{background: transparent url(../img/mock/homepage_welcome_step1.png) no-repeat scroll left top;}
#welcome #step1:hover
{background: transparent url(../img/mock/homepage_welcome_step1.png) ...
I have a site I deployed for a client using Joomla, and a good number of visitors are using IE6. The client informed me that there is a styling bug when someone does a search and has the option to change the order or the page count. When they get to that screen and hover over the Shop menu item in the nav bar on the top the menu shows ...
Hello
I have a page where I need to use overflow:auto inside html and body tags because I have a position : fixed element, for which I have to use position : absolute in IE (and thus, overflow:auto to get rid of the IE bug).
This bit is sorted.
But now my problem is I have other position: relative elements on my page. And the moment ...
So I've got this markup:
<div id="text-container">
<p></p>
</div>
with this style (redundant, I know):
#text-container {display:block: width:220px; height:280px;}
#text-container p {display:block; width:220px; height:60px;}
and this bit of jQuery plugging simple content into the paragraph:
$("#text-container p").text(data);
Wo...
Hi, I have a problem with only two of my pages in Wordpress - the pages are customized, so something might've slipped through the cracks, but I still can't catch what is wrong that they would appear so messed up in IE 6.
here are the two pages:
http://www.mediapartners-inc.com/work/
http://www.mediapartners-inc.com/contact/
Any ideas? ...
I have IE6.
[EDIT: you can see the template live here: http://themeforest.net/item/aqua-terra-lava-html-blog-portfolio-/full_screen_preview/53209 ]
I have a template, with 3 <a></a> that change the position of their background to create a button effect.
This is how it looks in any browser
This is it with IE6:
This the CSS code:
...
Hello gentlemen,
I am experiencing a very weird problem in IE6. I have a mask div that sits behind a message div, however, this mask div, needs to extend with the height of the parent container.
IE 7 and IE8 are behaving nicely. I get the expected result. However, IE6 only displays the mask div on top of the div that should sit infront...
Hello, I know it sounds a bit crazy but my client is using IE6 and I have so many problems with that browser, is there any way if the website is opened with IE6, let it act like it is IE7 or IE8?
P.S: I'm not crazy :)
...
Hi People,
Can anyone see anything specific that would be causing issues with jQuery in ie6? No jQuery elements are loading at all in ie6. ALL OTHER BROWSERS ARE FINE!!!! Thank you so much for your help!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html x...
I have a written a jquery plug-in which pops-up a div section on hover over an element, and I need to deal with the "select z-index" bug in IE6 (http://blogs.msdn.com/ie/archive/2006/01/17/514076.aspx). So, if running in IE6, my code needs to hide some select boxes on the page, when the pop-up div is visible.
My question is: In trying t...
I use jquery.flash() plugin to embed flash into my website. The problem is that in IE6 this doesn't work. I tried swfobject (1.5), also, but it gives me (sometimes) some strange errors with n null or something like that, so I decided to use jquery.flash() also. (I use both swfobject and jquery.flash() now)
So, basically, swfobject works...
My CSS and page works in the latest FireFox, Safari, and Chrome, IE7, IE8, but not IE6. Please help!
I have a popup that displays directly above the image (like I want) in every major browser except IE6.
At my URL, http://www.cookware-reviews.net/juicers/black-and-decker/, I have a bunch of DIVs inside one another that make up my 'popu...
I have a form inside jQuery tabs; I create tabs in a simple way:
$("#tabs").tabs({selected: 1});
The selected index 1 is the tab where form is placed. The problem is, on remote computer with IE6 both selects only display a small blank line instead of list with options when dropdown arrow is clicked:
The options are there in page so...
I made a Editable Combo box using the following code
<asp:TextBox ID="textbox" runat="server" Width="75px" Style="position: absolute;" />
<asp:DropDownList ID="ddl" runat="server" Width="95px" AppendDataBoundItems="true">
<asp:ListItem Text="" />
</asp:DropDownList>
And I create a javascript for onChange of the dropdown and show the s...
I just previewed my page in IE6 and for some reason it is rendering a period for absolutely not reason. I looked in my html to make sure I didnt add an extra period on accident or something and was unable to find ANYthing.
http://cypresslakesfla.com/models-new.php
Take a look, make sure you have IE6 tester and you will see. Anyone se...
I am using an in house custom library to replicate jsonp calls. Before you guys ask me to use JQuery or other libraries, let me tell I cannot use it due to some constraints.
Below is the code used to make the request:
BurrpJsonAjaxRequest.prototype.send = function() {
this.script = document.createElement("script");
this.script....