I'm not sure if the script you have quite makes sense to me. But I've
added where I think it should go.
<script type="text/javascript">
$(document).ready(function(){
$(".thumbnail li").click(function(){
$("#large li").html($
(this).html()).hide().fadeIn('slow');
return false;
});
});
</script>
Hope it helps :¬)
/James
On Oct 8, 11: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>