11175
(-- --)
November 15, 2008, 10:30am
1
I have done this code to give my form Fade effect.
It works in Mozila FireFox.
But Doesn't Work in IE 7 Browser.
shade.setStyle({
MozOpacity: '.15',
filer: 'alpha(opacity=15)',
opacity: '.15'
});
Wat Would be the Problem.
If IE Browser doesn't support Means Wat Would be the Alternative Code
To use.
Pls Help Me Out On this Problem.
Cheers and Thanks.
Rob_Lacey1
(Rob Lacey)
November 15, 2008, 3:45pm
2
The clue would be, my guess anyway, that MozOpacity is only supported in Mozilla based browsers like FireFox, not IE.
RobL
Newb Newb wrote:
hassan
(Hassan Schroeder)
November 15, 2008, 4:00pm
3
Newb Newb wrote:
I have done this code to give my form Fade effect.
It works in Mozila FireFox.
But Doesn't Work in IE 7 Browser.
shade.setStyle({
MozOpacity: '.15',
filer: 'alpha(opacity=15)',
I didn't see the original post, but if the above is a copy and paste,
you've misspelled "filter".
FWIW,
11175
(-- --)
November 17, 2008, 3:15am
4
Rob Lacey wrote:
The clue would be, my guess anyway, that MozOpacity is only supported in
Mozilla based browsers like FireFox, not IE.
RobL
thanks for the reply.if my code doesn't work for Internet Explorer.
Is there any way to do it for Internet Explorer.
Any helps
MACA_15C
(MACA [15C])
November 17, 2008, 5:41pm
5
Hi, have you tried like this
shade.setStyle({
-moz-opacity: .15;
filter:alpha(opacity=15);
});
I made a semi-transparent div, some days ago, and it worked for me
with Internet Explorer 6 and Mozilla Firefox.
Hope this help you.
Good luck.