Opened 16 years ago
Closed 16 years ago
#256 closed bug (duplicate)
$('something').load('test.html').show("slow") won't work
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | ajax | Version: | 1.0 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
As the subject says, while $('something').load('test.html').show() (no param passed to show()) works, $('something').load('test.html').show("slow") shows nothing (and no error is triggered. Using FF 1.5.0.7
Change History (3)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
This is most easily fixed bu reworking the snipit.
Try this:
$('something').load('test.html',function(){$('something').show("slow")});
That always works for me.
-Matt
Note: See
TracTickets for help on using
tickets.
This might be fixed in conjuction with #263.