Modify ↓
Ticket #8393 (closed bug: invalid)
load function in queue has bug
| Reported by: | anonymous | Owned by: | |
|---|---|---|---|
| Priority: | undecided | Milestone: | 1.next |
| Component: | unfiled | Version: | 1.5.1 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
i want hide my div first, then load a page in it and then show div by this code :
<div id="mydiv" onclick=" $('#mydiv').fadeTo('slow',0).delay(1000).load('test.php').fadeTo('slow',1);"
</div>
but browsers first load the page in my div and then fade it to 0 then fade it to 1.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Calling methods in this way (in chain) executes them simultaneously. To achieve desired result you should use callbacks. Please take a look at http://jsfiddle.net/RCMn4/ to understand what is all about.