Oh and if you use this patch ... please let me know if it works, doesn't work, etc...
Thanks! -- Brandon Aaron On 10/6/06, Brandon Aaron <[EMAIL PROTECTED]> wrote: > The opacity stuff in jQuery is currently broken for IE. This bug will > shed some light on your situation and provide a patch for it: > http://jquery.com/dev/bugs/bug/204/ > > I'm currently using it successfully but beware if you are using other > filters as this patch (in its current form) will overwrite them. > > Hopefully this weekend I will have a complete version with > test/example pages and it will be in included in the core and people > won't have to deal with patching it themselves. > > -- > Brandon Aaron > > > On 10/6/06, Kolak Roy M. <[EMAIL PROTECTED]> wrote: > > > > > > > > > > Hello all, > > > > > > > > I am just starting my jquery experience and I ran into a little problem. > > > > > > > > Here is the setup – I have a form that I want to keep hidden until the user > > clicks on a certain spot. Once the user clicks this spot the form should > > show itself with a nice transition. The user can then either submit the form > > or click in the same spot to hide the form. > > > > > > > > Here is the code – > > > > $("#newAnnouncement").click(function(){ > > > > > > if(document.getElementById('announcement_form').style.display > > == "none") > > > > { > > > > > > $("#announcement_form:hidden").show("slow"); > > > > } > > > > else > > > > { > > > > > > $("#announcement_form:visible").hide("slow"); > > > > } > > > > }); > > > > }); > > > > > > > > This works great in FireFox, but in I.E., the form is displayed, but with no > > transition (it is either visible or not) > > > > > > > > Help, > > > > Roy > > > > > > _______________________________________________ > > jQuery mailing list > > [email protected] > > http://jquery.com/discuss/ > > > > > > > _______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
