JQuery :: Superfish IE6 Dies With Opacity CSS Attribute

Jan 10, 2010

I have experimented in a variety of ways, and when I use the opacity CSS attribute, it kills the next level of the menu in IE6, FF as always no prob. Thus, when I had the CSS opacity code to <ul>, <li> does not appear. If I add it to <ul><li>, then the second level
<ul><li> <li>
does not appear. The menu's next level does not slide down, or out...

E.g. I am adding:
.sf-menu li li {
filter: alpha
opacity=80
;
}
To the Custom CSS field in the Joomla mod_superfishmenu module. I am using jQuery 1.2.6 and loading all SuperFish JS after mootools.js. I have also tried add it directly to superfish.css. I would love to add the animation, but can't get beyond opacity.

View 6 Replies


ADVERTISEMENT

JQuery :: Slideshow Dies In 1.3.2 But Works In 1.3.1 And Below?

Aug 13, 2009

I can click the next button and go forward until it reaches the last slide then it sticks. The Back button is also broken. This code works great with 1.3.1 and 1.2.6 but has the aforementioned bugs in 1.3.2....

$(document).ready(function() {
var fadeSpeed = 1000;
var currentSlide = 0;
var setSeconds = 1200;

[Code]....

View 3 Replies View Related

Javascript Dies On IIS Server

Sep 29, 2006

The script below loads a calendar page in an iframe and scrolls to
today's date.

It works just dandy on my apache/linux server, but won't do anything
when I use IIS. (Nothing appears on the page at all where the script is
at.)

I'd appreciate any suggestions on how to make this work from the IIS
server. Code:

View 5 Replies View Related

JQuery :: Superfish: No Animation After Loading Superfish.js

Sep 18, 2011

I was basically trying to follow several tutorials to get a superfish menu working on my website, but I don't seem to be able to get it to work.I included both the superfish.css and the superfish.js in my website's header; both paths are corrent and point to the designated file.I then included the superfish function in my header like this:

<script> $(document).ready(function(){ $('ul.sf-menu').superfish({
delay: 1000, // one second delay on mouseout
animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation

[code]....

The corresponding <ul> element has the required sf-menu class, but still there are no animations, no fading, no delays, just the plain css functionality provided by the superfish.css.

View 2 Replies View Related

JQuery :: Setting 'class' Attribute In Bulk Attribute Syntax Without Quotes Breaks IE/Opera?

Jan 20, 2010

i have found a possible bug in 1.4 but it's only in Internet Explorer 7 & 8.The following code does not work and completely ruins every peice of jquery on the page (that means everything inside $(document).ready and anyting else...

$("<div/>",{
id: 'tooltip-'+rand,
class: 'dock-tooltip',

[code]....

I cant see any syntax errors - i pulled the example from the 1.4 site. There is no trailing commas in the object notation and i really cant see any reason it would work in firefox and not IEx and more to the point not only not work in IEx but break any other jquery in the entire page....

View 5 Replies View Related

JQuery :: Css Attribute Selectors No Longer Work With The '$' In The Attribute Value As Of 1.5+

Mar 4, 2011

I'm working with a large (and unweildy) ASP.NET application, and there is a lot of jQuery code that uses selectors like this:

[name=_aspnetControl$_withASubControl] And unfortunately, some selectors that also look like this:

[name^=_someAspNetControl$_radioButtonList].

In other words, the effort to remove the $ from the attribute selectors would be monumental. If it is possible to escape the $ symbols, I can do that easily enough, but unfortunately the situation right now means that I can't upgrade to jQuery 1.5.

View 2 Replies View Related

JQuery :: Finding The Value Of Attribute B In Elements Named Bar Where Attribute A Has The Value 30

Sep 1, 2010

I'm learning jQuery with XML. I'm familiar with other query languages such as XPath. I'm having a little bit of difficulty wrapping my brain around how jQuery works but I think I can make the leap if I see a solution to a problem I know how to solve with other methods Given the following XML, please share a jQuery solution to finding the value of attribute B in elements named bar where attribute A has the value 30:

[Code]...

View 1 Replies View Related

JQuery :: Get Opacity Of A Div?

Sep 12, 2011

Is there anyway to get the value of the opacity of a div using javascript. I tried to use the following syntax but it returns and undefined value code...

View 3 Replies View Related

JQuery :: Animate Opacity PNG In IE?

Jan 27, 2010

here is my [URL].. Basically when mouseover I animate the opacity. Works well in Firefox but in IE 8, the shadow appear on the text. Is there anything I miss out or is there any problem with my PNG file?

View 4 Replies View Related

JQuery :: Apply 50% Opacity To A Div?

Jan 29, 2010

I was trying to apply an alpha of 50% to a div but using opacity with CSS but it is not validated in CSS 2.1.

View 5 Replies View Related

JQuery :: Getting Plugin To Fix IE6 Opacity Bug?

Aug 2, 2010

I originally tried this but found it to be quite problematic: [URL]I don't think it's jQuery 1.4 compatible either.I then went on to try a JavaScript script that I found elsewhere, but that also brings up new problems!All I need is a simple bug-free jQuery plugin that will fix the opacity bug in IE6.

View 2 Replies View Related

JQuery :: Dialog Opacity With IE8?

May 13, 2010

I am seeing a weird issue where the dialog opacity does not work with IE8 browsers controlled by settings under a Windows Group policy. I can run IE8 from my house and the dialog opacity works fine. Does anyone know what Group Policy setting might turn off opacity in IE8?

View 2 Replies View Related

JQuery :: Animate Opacity In IE8?

Jun 4, 2010

I'm currently using the following code to animate three boxes on page load:

Code:
function animateVideo(){$('.video').animate({opacity:1.0,top:"-=50px"},500,"swing");}
function animateProduct(){$('.product').animate({opacity:1.0,top:"-=50px"},500,"swing");}
function animateMap(){$('.map').animate({opacity:1.0,top:"-=50px"},500,"swing");}

[Code]...

I've been told i can use the jQuery effect fadeTo() which will work, however i'm not sure how to adapt my animate() code to use the fadeTo() function at the same time as moving.

View 1 Replies View Related

JQuery :: Fixing IE8 Png Opacity Bug

Jun 8, 2010

I have a real problem with the google maps API in IE7/8, the "powered by google" which i can't remove due to the t&c's loses its alpha transparency when i apply opacity to it "to acheive the sliding in effect" seen here: [URL] I'm trying to set the alpha back using this:

Code:
$('#map_canvas div div a div div').css("filter","progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src=http://maps.gstatic.com/intl/en_gb/mapfiles/poweredby.png)");
(jQuery)

But this does not seem to do anything, and looking at the source in firebug Lite for IE, it seems this is already set on multiple div's surrounding the logo anyhow.

View 6 Replies View Related

Difference Between Empty Attribute And Undefined Attribute

Apr 24, 2007

I'll trying to tell the difference between the following three cases:

<img alt="text string" />
<img alt="" />
<img />

I can do this in Firefox with the following code, where elem is the
HTMLElement representing each image, but IE doesn't seem to
differentiate between empty string and undefined.

var alt = elem.getAttribute('alt');
alt = (alt) ? alt : ((alt===null) ? 'really_null' : "");

The desired output from running this code on the 3 tags above is:

text string

really_null

It seems like this should be really easy...but I'm having a really
difficult time trying to figure out what's going on...

View 4 Replies View Related

JQuery :: How To Apply An Opacity Effect

Feb 3, 2010

I have several images as thumbnails on my page and applied the 'changeImg()' function the onmouseover event. It then shows the thumbnail image as 'big' image at a certain position. It looks kind of boaring and it would be nice to apply jquery to have a nice effect problem: after quite some time I still don't seem to be able to integrate it into the existing javascript function.

[Code]...

View 3 Replies View Related

Jquery :: Opacity On Color Plugin?

Jun 28, 2011

I would like to apply an opacity on my navigation roll over,

View 5 Replies View Related

JQuery :: Animate Opacity IE6 Error

Apr 18, 2011

IE6 is reporting an error for this line:

Code:
$('#receptioncontent').animate({opacity: 'toggle', height: 'toggle'}, 'fast');
The error is:
"Unexpected call to method or property access."

It's strange because (I think) everything on the page works correctly - so I don't understand the error. If I uncomment the line above there are no errors.

jQuery version is 1.3.2 I'm testing in IE6 on Windows XP SP3. How can I stop this error from being reported?

View 1 Replies View Related

JQuery :: Animate Using Opacity Works But Sliding Does Not?

Mar 21, 2011

I have 2 divs on a page, the outer div has an inner div nested within it, both have different background images set to them. I managed to program the following fine:
$(function(){
$("div.outer").hover(
function() {
$("div.inner").stop().animate({"opacity": "0"}, "slow");
},
function() {
$("div.inner").stop().animate({"opacity": "1"}, "slow");
});
});

So that when you hover over the div, the inner div with the background image fades in, and then out on rollout. Why will the following code not slide the inner div up and down:
$(function() {
$("div.outer").hover(
function() {
$("div.inner").stop().animate({top:"-200px"},{queue:false,duration:200});
},
function() {
$("div.inner").stop().animate({top:"0px"},{queue:false,duration:200});
});
});
I am using jQuery 1.5 min.

View 2 Replies View Related

JQuery :: Include Child Element Opacity?

Sep 30, 2011

i am working with opacity. i dont want to include child tr with the table element opacity.

View 1 Replies View Related

JQuery :: .fadeTo Not Working With Just An Opacity Number?

Oct 25, 2010

according to the api, the fadeTo method can now be called with just an opacity in 1.4.3, no duration, however, i cant get it to work. here's a jsbin with what i've tried: [URL]if i modify .fadeTo(0) to .fadeTo('slow',0) it works.

View 3 Replies View Related

JQuery :: Image Caption With Opacity Fade?

Sep 8, 2010

Ive used this tutorial code...

But when I hover over the Wrapper DIV the Description DIV also fades.

I want the Description DIV to remain at 100 opacity even when I hover over the wrapper.

Is that possible?

View 3 Replies View Related

JQuery :: Using Background Opacity On Dialog Without Modal?

May 4, 2011

How can i set the background opacity of jquery dialog without setting modal:true?I need this possibility because i can not use modal:true (i am using forms inside the dialog box

View 2 Replies View Related

JQuery :: Animate Opacity And Position Internet Explorer?

Jul 31, 2011

I want to do a simple animation where an image fades and expands at the same time. Works beautifully in chrome/safari etc but because of the IE opacity thing not IE. Can I use fadeIn() and get this to work at the same time as the animate()? or is there another solution?

[Code]...

View 1 Replies View Related

JQuery :: Change Current Link Opacity And Color

Oct 18, 2011

I've got this script which effectively should change the clicked link's opacity to full and its siblings' opacity to 0.6. The only part that works though is the changing the text color to black. Here's the script:

<script type="text/javascript">
$(document).ready(function(){ $(".menu a").live('click',function(){
$(this).siblings().css('color','red');
$(this).css('color','black');
$(this).css('opacity',1);
[Code]....

View 3 Replies View Related

JQuery :: Children Disappear With FadeTo / Opacity Effects?

Sep 26, 2009

I have this html:

<div class="foo parent">
<div class="child"></div>
</div>

with some css:

.foo{
position:absolute;
left: -117px;

[code]....

...works fine on the parent but the child disappears.Including both the parent and the child in the selector also give the same problem:

$(".parent, .child").fadeTo('fast',0.50)

...does the same thing. It think someone must have run into this before.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved