Hello all
I have developed a website using some effects (fadeIn, fadeOut, slideUp ...) which works fine, but now I see that those transitions are very slow in the iphone.
As everything else works fine, I would like to exchange those effects for hide and show during runtime and keeping the callback functions...
is there an easy way to do it?
example:
- //ORIGINAL
- $('#clickme').click(function() {
- $('#book').slideUp('slow', function() {
- // Animation complete.
- });
- });
- // REPLACED
- $('#clickme').click(function() {
- $('#book').hide('slow', function() {
- // Animation complete.
- });
- });
Thank you!
marc