Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly

2006-10-18 Thread Andy Matthews
That worked perfectly Klaus...thank you.

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Andy Matthews
Sent: Tuesday, October 17, 2006 11:21 AM
To: jQuery Discussion.
Subject: Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly


I see...thank you Klaus. I'll read up on that link you sent.

Appreciated.

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Klaus Hartl
Sent: Tuesday, October 17, 2006 10:51 AM
To: jQuery Discussion.
Subject: Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly




Andy Matthews schrieb:
 I'll check into this, but I don't believe we're using transparent
 backgrounds. I'm pretty sure we're just using product images which are in
 plain IMG tags.

That is exactly what this solution relies on. Nonetheless the 
transparent png is set in CSS by usage of the alphaimageloader filter...


-- Klaus

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


[jQuery] SOT: PNG fix seems to cause page to load endlessly

2006-10-17 Thread Andy Matthews
I'm using a PNG fix javascript to load in some product images on a site that
my company did. It works great, in that the images load in properly and
are transparent. The problem is that the page loads endlessly, even though
nothing is missing.

My first question is does anyone know why this is happening?. A second
question is, does anyone have a PNG fix that works correctly?

Here's the site:
http://www.bigcomfycouchstore.com

All of the product images on the front page are PNGs

Thanks in advance.

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly

2006-10-17 Thread Andy Matthews
I'll check into this, but I don't believe we're using transparent
backgrounds. I'm pretty sure we're just using product images which are in
plain IMG tags.

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Klaus Hartl
Sent: Tuesday, October 17, 2006 10:38 AM
To: jQuery Discussion.
Subject: Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly


I found a fairly easy solution a while ago, try this:

http://www.stilbuero.de/2006/03/15/png-alpha-transparency-fast-and-easy/

It boils down to put a little dynamic property into your style sheet:

img.png {
 background-image: expression(
 this.runtimeStyle.backgroundImage = none,
 this.runtimeStyle.filter =
progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + this.src +
', sizingMethod='image'),
 this.src = /path/to/transparent.gif
 );
}


-- Klaus


Andy Matthews schrieb:
 I'm using a PNG fix javascript to load in some product images on a site
that
 my company did. It works great, in that the images load in properly and
 are transparent. The problem is that the page loads endlessly, even though
 nothing is missing.

 My first question is does anyone know why this is happening?. A second
 question is, does anyone have a PNG fix that works correctly?

 Here's the site:
 http://www.bigcomfycouchstore.com

 All of the product images on the front page are PNGs

 Thanks in advance.

 !//--
 andy matthews
 web developer
 certified advanced coldfusion programmer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-


 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly

2006-10-17 Thread Klaus Hartl
I found a fairly easy solution a while ago, try this:

http://www.stilbuero.de/2006/03/15/png-alpha-transparency-fast-and-easy/

It boils down to put a little dynamic property into your style sheet:

img.png {
 background-image: expression(
 this.runtimeStyle.backgroundImage = none,
 this.runtimeStyle.filter = 
progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + this.src + 
', sizingMethod='image'),
 this.src = /path/to/transparent.gif
 );
}


-- Klaus


Andy Matthews schrieb:
 I'm using a PNG fix javascript to load in some product images on a site that
 my company did. It works great, in that the images load in properly and
 are transparent. The problem is that the page loads endlessly, even though
 nothing is missing.
 
 My first question is does anyone know why this is happening?. A second
 question is, does anyone have a PNG fix that works correctly?
 
 Here's the site:
 http://www.bigcomfycouchstore.com
 
 All of the product images on the front page are PNGs
 
 Thanks in advance.
 
 !//--
 andy matthews
 web developer
 certified advanced coldfusion programmer
 ICGLink, Inc.
 [EMAIL PROTECTED]
 615.370.1530 x737
 --//-
 
 
 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/
 

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly

2006-10-17 Thread Klaus Hartl


Andy Matthews schrieb:
 I'll check into this, but I don't believe we're using transparent
 backgrounds. I'm pretty sure we're just using product images which are in
 plain IMG tags.

That is exactly what this solution relies on. Nonetheless the 
transparent png is set in CSS by usage of the alphaimageloader filter...


-- Klaus

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly

2006-10-17 Thread Andy Matthews
I see...thank you Klaus. I'll read up on that link you sent.

Appreciated.

!//--
andy matthews
web developer
certified advanced coldfusion programmer
ICGLink, Inc.
[EMAIL PROTECTED]
615.370.1530 x737
--//-

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Klaus Hartl
Sent: Tuesday, October 17, 2006 10:51 AM
To: jQuery Discussion.
Subject: Re: [jQuery] SOT: PNG fix seems to cause page to load endlessly




Andy Matthews schrieb:
 I'll check into this, but I don't believe we're using transparent
 backgrounds. I'm pretty sure we're just using product images which are in
 plain IMG tags.

That is exactly what this solution relies on. Nonetheless the 
transparent png is set in CSS by usage of the alphaimageloader filter...


-- Klaus

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/