Hi there
If I change code using toggle and a anonymous call back from
$(document).ready(function() {
$("button").click(function() {
$("p").toggle("slow", function() { alert('hey'); });
});
});
to the following (using the UI-effect slide instead of slow) the call
back never fires:
$(document).ready(function() {
$("button").click(function() {
$("p").toggle("slide", function() { alert('hey'); });
});
});
I'm new to jQuery and jQuery UI please help.
Brandt
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---