[jQuery] Re: Interface scrollTo - needing callback functionality (attn Stefan)

2007-08-23 Thread jsw_nz

In the meantime - managed to use the setTimeout method - as a
workaround

function ajax_getPage(param1,param2){
   jQuery.noConflict();
jQuery('#top').ScrollTo(900, 'easeinout');
setTimeout( function() {
jQuery(#footer_wrapper).fadeOut(700);
jQuery(#mainblock_760).fadeOut(700,function() {
getAjax(param1,param2);
});
}, 900 );

}

I am guessing the documentation for scrollTo might need a wee bit of
updating regarding callbacks
- great plugin nonetheless!!! Along with JQuery !

cheers
(-john-)



[jQuery] Re: Interface scrollTo - needing callback functionality (attn Stefan)

2007-08-23 Thread Herr M.

I think that's a bug in the Interface code.
I haven't found any calls to the callback function in their code
anyway.

Anders