Jquery click not working

hi all

can you see what is wrong here?

i’m trying to list a number of img thumbs … and onclick the the larger on in a div above the list…



 $("A#colMini").Click(function() {
            $("#bigpic")
                .hide()
                .html()
                .load("ajaxResponse.php?action=subCol&id="+this.id)
                .show();
            });



<div id="bigpic"></div>
<ul class="HLportfolio">
<li class="hlSub"><a href="/item1" id="7" class="colMini" >
<img src="/upload/image.jpg"  border=0 class="subCollection" alt="desc" /></a>
</li>
</ul>

it’s giving an error that click isn’t a property…

You typed “Click” instead of “click”. Javascript is case sensitive.