Modify ↓
Ticket #742 (closed bug: invalid)
Animate with opacity doesn't hold inline style values
| Reported by: | rsoule@… | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | |
| Component: | effects | Version: | |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
See demo here:
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.

This is the correct behavior. You are using a 'show' action/value for the opacity. Anytime a 'show' or 'hide' action/value is used, the inline styles (except display) will be removed.
Please use the following instead: $("#animateMe1").css('opacity', 0).animate({ left: 350, opacity: 1}, 600);