Hi,
i have 3 div tags of same class,
<div class="redc">
<p>sdfs</p>
</div>
<div class="redc">
<p>sdfs</p>
</div>
<div class="redc">
<p>sdfs</p>
</div>
to select div other than first ,$(".redc:not(:first)") works fine in mozilla,but not in IE
Please suggest any alternative for IE
Note: vesion jquery 1.3
...
In this page:
http://tinyurl.com/widthheight
I am usign max-width and max-height.
Work fine for Firefox, Chrome, Opera, Epiphany, ecc but NOT Internet Explorer.
.
What solution do you recommend in this case ?
I have to limit max-width of 180px and max-height of 180px.
...
How can I make my own Internet Explorer sidebar (not toolbar) just like Google Sidewiki, which will also interact with my browser (only IE). Any example?
...
Hi guys,
I'm trying to style a definition list properly. So far I've got the style that I wanted in Firefox 3.5 and IE 8 but I couldn't get IE6 and IE7 to behave properly... I've already tried any kind of hack and trickery I could possibly think of.
It seems like the "clear:both" on the dt doesn't work in IE<=7...
Below is the "test pa...
Hello.
I have an ASP.net MVC2 application. In wich I'm using JQuery to alter all table rows so I can click anywhere in any row to trigger a click event on a link in the clicked row.
The tables is created using MVC's built in partialview ajax.
Here is my JQuery script.
<script type="text/javascript">
$(document).ready(functi...
When i want to make my flasplayer( flowplayer ) resize to bigger or smaller with jquery , it does not work properly on internet explorer
when i make it smaller i use this function
////Make player smaller
function createSmallPlayer() {
flowplayer("player").hide().pause();
// get handle to the embed element
...
Hello All,
A client is saying that this page is displaying the sifr titles twice. Anybody had this? It doesn't happen all the time which is even more peculiar.
Here is one of the pages:
http://www.frontier-economics.com/europe/en/news/906/
Is it just IE? Any thoughts hugely appreciated!!
...
As detailed elsewhere, and otherwise apparently well-known, Internet Explorer (definitely 7, and in some instances, 8) do not implement key functions, in particular on Array (such as forEach, indexOf, etc).
There are a number of workarounds here and there, but I'd like to fold a proper, canonical set of implementations into our site rat...
Hello,
I have a problem with the IE (what else?):
I generate content with CSS which has also a background-image.
I looks like that:
#nav ul li:after {
content: "--";
position: relative;
z-index: 99;
background: transparent url(image.png);
color: transparent;
}
The text color is in non-IE-browsers transparent, but...
got the jq cycle plugin to work nicely on all the other major browsers, but IE7 just shows the first nested element (an img with a anchor wrapped around it) with no fade/animation.
http://alitedesigns.com/
I checked for trailing commas after the custom attributes for cycle, any thoughts on why IE won't play nice?
thanks!
...
Hello all,
IE is giving me a permission denied error when I use window.open to open a window from a browser button. I do not get the error in Firefox or Chrome. What do I do?
The code:
<button type="button" onClick="window.open('https://www.example.com','newWindow');">
My button
</button>
...
Hey all,
I've searched high and low for a solution, but can't find one. I'm using Google Docs Viewer to view PDF files. It's a great tool, but I can't seem to get it working in Internet Explorer (7 or 8). All my images come up as a 'missing' icon. If I view the file externally, it seems to load fine and it will start working (I'm assu...
I'm using jqtransform on my site. When the user is on a for them to be able to use hot keys to move through the selections. I added this function:
$wrapper.find('a').keydown(function (e) {
var Esc = 27;
var code = (e.keyCode ? e.keyCode : e.which);
if(code== Esc || (code>=65 &&code<=90)){
...
I have a rails application in which i am using scriptaculous,prototip,controlMModal(livepipe.net).
I am getting an error in IE 7 and 8 as web page error (alert box)
The error is
"Stack overflow at line 1715"
Versions used:
scriptaculous v 1.8.3
prototip 2.2.0.2
prototype 1.6.1
controlmodal 2.2.3 (livepipe.net)
...
Hi All,
In my joomla project(http://crystalwrightlive.com) home page there is one sliding banner section, but this banner not working in IE browser (working fine in FF browser) and showing following error:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB6; InfoPath.2)
Timestamp: Sat...
Is it possible to position: absolute a <div /> over a Flash banner without adding wmode="transparent" to the banner?
I have a lightbox that needs to appear above my ads but I can't directly modify the banners as they come from a third party.
Edit: The problem mainly occurs in IE where the Flash banner is shown above the lightbox.
...
hi,
is debugging in compatibility mode in IE8 exactly the same than debugging in IE7 ?
do the websites display exactly the same ?
So I don't need IE7 for testing if I have IE8 ?
thanks
...
How can I make a specific css stylesheet for internet explorer 8 ?
I mean, how can I load it only if the browser is IE8 ? (And not IE7 and IE6)
thanks
...
Does anyone know of a way to chain the proprietary filter properties in CSS.
For example I have a div.example and I want to give it a background gradient and a drop shadow. So I'd like to do something like this:
div.example {
/* gradient */
filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr=#cb141e78,endColorstr=#cb1d...
I have a site that grabs the response text from an AJAX call and does 'innerHTML' on a div that is going to contain it. After I do the 'innerHTML' I process the DIV by traversing the whole hierarchy of nodes and grabbing their [offsetWidth/offsetHeight] to do some operations with it. Why not css style width/height? because sometimes thos...