Hai Techies,
Can any one tell me how can i replace the slideup function with fadeout('slow') for the below code
div.slideUp(function() {
div.load("GetResults.aspx?mode=bymanu&mid="+manuId,
{ symbol: $("#txtSymbol" ).val() },
function() {
$(this).slideDown();
});
Instead of slideUp,I want to use the FadeOut function with a speed .How can i chain up the events ?
I want to replace the SlideDown also with FadeIn('slow')
Thanks in advance...