Skip to main content

Bug Tracker

Side navigation

#6998 closed bug (worksforme)

Opened September 03, 2010 04:16PM UTC

Closed September 23, 2010 04:32AM UTC

.show not calling callback

Reported by: andreipetre Owned by:
Priority: undecided Milestone: 1.4.3
Component: unfiled Version: 1.3.2
Keywords: Cc:
Blocked by: Blocking:
Description

When specifying the duration for ".show()" as "0" (zero) the callback function is never called.

e.g.:

For "$([selector]).show(0, SOME_FUNCTION)", SOME_FUNCTION is never executed.

Attachments (0)
Change History (2)

Changed September 08, 2010 02:10PM UTC by dfens comment:1

works properly in 1.4.2

<html>
  <head>
<script src='http://code.jquery.com/jquery-1.4.2.min.js'></script>


    <script>
$(document).ready(function() {
  
 $("#test").show(0,function(){alert('works');});
});
    </script>
  </head>
  <body>

<div id="test" style="display:none">foo</div>

  </body>
</html>

Changed September 23, 2010 04:32AM UTC by snover comment:2

priority: → undecided
resolution: → worksforme
status: newclosed