Hi,

> I am using script.aculo.us version 1.8.3 and i am facing the problem
> in the Effects Blind Down and Blind Up.
>
> I am facing the problem in only one browser in Microsoft Internet
> Explorer 8.0.6.
>
> When ever i applied the effect to the div it just flicked once.This
> happens only with IE not with any other browser.

I'm a bit surprised it's working even that well; jQuery and Prototype
don't play together unless you tell jQuery to use "noConflict" mode:
http://docs.jquery.com/Using_jQuery_with_Other_Libraries

HTH,
--
T.J. Crowder
Independent Software Consultant
tj / crowder software / com
www.crowdersoftware.com

On Jan 17, 2:55 pm, jinesh <jinesh.parikh1...@gmail.com> wrote:
> Hi all,
>
> I am using script.aculo.us version 1.8.3 and i am facing the problem
> in the Effects Blind Down and Blind Up.
>
> I am facing the problem in only one browser in Microsoft Internet
> Explorer 8.0.6.
>
> When ever i applied the effect to the div it just flicked once.This
> happens only with IE not with any other browser.
>
> I am using JSP.
>
> Below is the code of the sample page
>
> <%@ page language="java" import="java.util.*"
> pageEncoding="ISO-8859-1"%>
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
> <html>
>         <head>
>                 <title>My JSP 'Animate.jsp' starting page</title>
>
>                 <meta http-equiv="pragma" content="no-cache">
>                 <meta http-equiv="cache-control" content="no-cache">
>                 <meta http-equiv="expires" content="0">
>                 <meta http-equiv="keywords" 
> content="keyword1,keyword2,keyword3">
>                 <meta http-equiv="description" content="This is my page">
>                 <link rel="stylesheet" type="text/css" href="styles.css">
>                 <script 
> src="<%=request.getContextPath()%>/javascripts/prototype.js"
> type="text/javascript"></script>
>         <script src="<%=request.getContextPath()%>/javascripts/
> scriptaculous.js" type="text/javascript"></script>
>
>     <!--
>                 <script
>                         
> src="<%=request.getContextPath()%>/javascripts/jquery-1.3.2.js"
>                         type="text/javascript"></script>
>                 <script type="text/javascript">
>         $(document).ready( function() {
>                 $("#take_it_up").toggle( function() {
>                         $("#blinddown_demo").hide('slow');
>                 },function() {
>                         $("#blinddown_demo").show('fast');
>                 });
>         });
> </script>
> -->
>         </head>
>
>         <body>
>
>                 <div id="blinddown_demo"
>                         style="width: 80px; height: 80px; background: 
> #ccc;text-
> align:center;overflow: hidden;">
>                         <div id="x" style="position: relative">
>                                 <div>
>                                         This is some test content.
>                                         <br />
>                                         This is some test content.
>                                         <br />
>                                 </div>
>                         </div>
>                 </div>
>                 <table>
>                         <input type="button" id="take_it_up" value="Take it 
> Up"
> onclick="Effect.BlindUp('blinddown_demo')"/>
>                         &nbsp;
>                         <input type="button" id="reset" value="Reset"
> onclick="Effect.BlindDown('blinddown_demo')"/>
>                 </table>
>
>         </body>
> </html>
-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to prototype-scriptacul...@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.


Reply via email to