I am trying to write some jQuery that will go get a resizedimage from a CF page 
then show that data in a div (#beautyImage) slowly.  Iwant it to fade in.
 
This works, but it does not fade in.  I just quicklyreplaces the image.
 
<script>
function swapImages(imageName) {
                $.get('/shop/act_getBeautyImage.cfm?beautyImage='+ imageName + 
'&width=372&height=465',{},
                                  function(data,status) {
                                                 
$("#beautyImage").show('slow').html(data);
                                  });
}
</script>
 
Any suggestions?
 
Thanks
Chad

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338450
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to