[jQuery] Show: Call jQuery i callback
I have this code sample:
$j(".dialogBookingError").show(200).effect("highlight",{},650);
I would like the effect first to run after the show is finish.
Therefore I try:
$j(".dialogBookingError").show( 200, $j(this).effect("highlight",{},
650) );
But it does not work. Hope someone can help me!