You could do something like this:
$(".thumbnail li").click(function(){
var thumbnailHtml = $(this).html();
$("#large li").fadeOut("fast", function(){
$(this).html(thumbnailHtml).fadeIn("slow");
});
return false;
});
On Oct 8, 6:47 am, skinnytiger <[EMAIL PROTECTED]> wrote:
> I'm using the below script to load html into a placeholder, it all
> looks groovy but I want it to fade in, where do I add the .fadeIn() to
> get this to work?
>
> <script type="text/javascript">
> $(document).ready(function(){
> $(".thumbnail li").click(function(){
> $("#large li").html($(this).html());
> return false;
> });
>
> });
>
> </script>