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. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
The clue would be, my guess anyway, that MozOpacity is only supported in Mozilla based browsers like FireFox, not IE. RobL 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)'', > 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. >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> 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, -- Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Rob Lacey wrote:> The clue would be, my guess anyway, that MozOpacity is only supported in > Mozilla based browsers like FireFox, not IE. > > RobLthanks for the reply.if my code doesn''t work for Internet Explorer. Is there any way to do it for Internet Explorer. Any helps -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Hassan Schroeder wrote:>> 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, > -- > Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.orgthanks for the reply.if my code doesn''t work for Internet Explorer. Is there any way to do it for Internet Explorer. Any helps -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
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. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---