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


ADVERTISEMENT

Fixing Communication Between JS And PHP?

Jul 28, 2011

I need to fix the communication between the JS located in this page and the PHP form script. When the form is submitted I want the page to automatically update which is already present in the script, thanking the user for the submission. Since the PHP script was changed that communication is broken and I hope to get it communicating once again.

View 2 Replies View Related

Cleaning Up/fixing Code

May 12, 2007

I have a preloading page on my site for several images. When I run the code for the preloading page through the W3 validator, I get these error messages:

character "<" is the first character of a delimiter but occurred as data.
there is no attribute "name". document type does not allow element "img" here.

I tried correcting the second and third errors, but ended up messing up the whole script. If someone could fix these errors and just clean up the code in general, that would be helpful. By the way, the doctype is XHTML 1.0 strict. Code:

View 8 Replies View Related

Fixing The Code-Popup Window?

Jun 22, 2010

I am trying to apply it to my page. But when I click on a thumbnail, although it's opening a pop-up window, it also enlarges the image in the current browser.I also need to do the same thing with a .swf file. How can I have a flash movie enlarge when clicked?

<HTML>
<Head>
<Script type="text/javascript">

[code]....

View 2 Replies View Related

Fixing First Two Column Of A Html Scrolling Table?

Apr 14, 2011

This is a scrolling table. First row & last row are fixed, they don't moved. I also want to fixed the first two column (column1 & column2).

/* CSS Document */
table#table-body, table#table-header, table#table-footer
{
border-spacing:0;

[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 :: 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 :: 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 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

JQuery :: .hover Not Working On .fadeto Menu Opacity?

Jun 1, 2011

The JS file works and the menu fades but theres not change on hover, heres the code i'm using for the js:

$(document).ready(function(){
if ($.browser.version = jQuery.browser.msie &&
parseInt(jQuery.browser.version) == 6) {

[code]....

View 8 Replies View Related

JQuery :: Change Opacity Of Item With Class Of Selected

Jan 5, 2010

I am trying to check if a list item has a class of selected, then is so change the opacity to 0.5. Here is my code:

[Code]....

View 6 Replies View Related

JQuery :: Images Have Opacity Value Immediately - Instead Of When The Page Is Loaded?

Jun 12, 2009

In my application I've the small line:

THis is very nice effect and more easy to use than the CSS method. I'll use this for some hover states.

Problem is that the opacity starts when the page is loaded. So you see the images 'flash' from normal to 'opacity: 25'.

Is there a method so the images have the opacity value immediatly, instead of when the page is loaded? Like a step before 'document.ready'. Or is the only way, the CSS way?

View 2 Replies View Related







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