Hello,
My problem is the website i maintain displays fine on firefox ,chrome and IE8 but a mess when viewed with IE7 and IE6. I ran out of possible fixes i can come up with and its mostly trial and error.
Im thinking of loading a separate stylesheet for IE6 and IE7 but i must solve this first.
Here is the page :
Search for a keyword
...
Here is my code:
http://jsbin.com/uhera3/edit
When I use jQuery to .hover(), the relatively positioned floated divs jump to the left (seemingly losing their margins) in IE7.
Any ideas how to fix this?
...
I've noticed IE conditional statements don't work in the transformed XML document. How do I get IE 6 and above to process them.
Code as follows
'<!--[if IE 6]><style type="text/css" media="all">@import "/css/ie6.css";</style>'
Thanks.
...
Given this markup:
<ul class="grafiek">
<li class="first-child">item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li class="last-child">item</li>
</ul>
How do I make it appear, cross-browser, like so:
In other words: the last item (with the fake pseudo-class last-child) should always stretch...
Ah, is it ever really over if there's still an IE?
Thanks to the invaluable help of Stack Overflowers, I have my jQuery working perfectly in FF, Safari, Chrome & Oprah. Naturally, it fails in IE7, which evidently has trouble href attributes, e.g.:
$('li a[href="' + title + '"]').parent().remove();
Can someone shed some light on an a...
I remove initialIndex:0, so http://dl.dropbox.com/u/6594481/tabs-2010/get-request1.html#two.html will get one ajax GET request in Firebug console. Unfortunately it stopped to get ajax request for http://dl.dropbox.com/u/6594481/tabs-2010/get-request1.html on IE7 and IE6, on other browsers it works fine. What is the issue for that?
check...
I'm trying to create a blurred drop shadow (similar to the CSS3 box-shadow) in Internet Explorer. The most logical way to do this seems to be to find all elements that need a shadow in IE, and inject a new div inside of them using jQuery. This new div will fill the exact same space as its parent, and it can then be blurred using IE's b...
Hello
The javascript code below is about half way on my php page, I can't directly modify the radio buttons with IDs q_251_789 and q_251_790 on my page unfortunately, hence why I'm using JS to add attributes to those two radio buttons:
<script><!--
$("#q_249_249").hide();
$("#q249").hide();
$("#q_251_789").attr("onClick","yesClicked();...
Hello all,
For few days i'm looking for a good solution for my problem, but with no success.
Here is my code:
<ul style="list-style: none; position: relative;">
<li style="float: left;"><span style="position: relative; left: 5px; ">one</span></li>
<li style="float: left;"><span>two</span></li>
<li style="float: left;"><spa...
On the site I'm currently working on there is a nested unordered list in the sidebar, when an <li> from this list is hovered over, it shows the (previously hidden) child <ul>. This is working fine in all browsers except IE 7+6. In these browsers the popup <ul> displays beneath the <li>'s of the list above. Any idea why it would be doing ...
So I have a bit of script at the bottom of my page //RETAINER CURRENT that is supposed to hide and show content based on what menu item the user selects in the maincontent area. Unfortunately in IE7 all layers are rendered which means the videos in each layer play simultaneous. I tried .detach, .remove, methods and had no luck and when I...
Good day,
I'm in need of inserting a Hack to a web page, so it works well on IE7.0
But I'm having issues with the way I'm doing things. It should be simple.
The actual CSS code is the following:
<style type="text/css">
body { margin:0;}
#home_splash { background-image:url(homeimages/image-background.jpg);background-repeat:repeat-x; ba...
I'm trying to style a definition list so that dt tags start new rows, and can be followed by any number of dd elements on the same row. In modern browsers this is as simple as
dt {
float:left;
clear:left;
}
dd {
float:left;
}
In IE7, however, if the clearing element has float, subsequent floats are not affected. (example) ...
We are using a heavily modded version of the jquery lightbox plugin to create a lightbox with a gallery on the side. However, when I do
$('.popup').lightBox({fixedNavigation:true});
IE 7/6 gives me an error on that line. This works on every other browser. Now of course, being IE 7 and 6, theres no actual error description, so I'm not ...
EDIT:
This error happens because in IE6 and IE7 these attributes are required for a textarea element.
Code:
$(document).ready(function () {
var ASP_txtNotes = 'ctl00_cphBody_txtNotes';
$("#" + ASP_txtNotes).removeAttr("cols"); // <-- Error here
}
Error:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; ...
Hi,
I have this code:
$("#boxId ul li a:eq(0)").click();
Works ok in IE8 and FF, but I'm getting error in IE6 and IE7.
"Object doesn't support this property or method"
Someone knows why?
Obs:
$("#boxFoto ul li a:eq(0)").size(); // returns '1'
...