FadeIn Question

FadeIn Question

Hi,

I'm using JQuery (or trying to at least)

I have an ajax call that is returning some HTML.  My code works but when the HTML comes in I'd like it to kinda of fade in, right now it seems jerky.

I'm taking the response from the AJAX call and populating a div basically, but I'd like the effect to be a bit smoother.

How can I make the HTML fade in when my success handler is called??
































$.ajax( {type: methodType, 
url:"index.cfm",
dataType:"html",
data: pars,
error: h_callError,
complete: h_onComplete,
success: function(req){

// HOW CAN I MAKE THE HTML FADE IN??
$("#"+targetID).html(req)
}
 });