Crudely, something like this:

    $('#prev').css('cursor','pointer').bind('click', function() {...}

Adding a class may be preferable if you wish to provide further visual
cues (such as a border) to your clickable images.

    $('#prev').addClass('clickable').bind('click', function() {...}

And then in your css:

.clickable {cursor:pointer; border: solid 1px blue;}

On Apr 15, 4:44 pm, "wyo" <[EMAIL PROTECTED]> wrote:
> I've bound a click handler to an image and would like to see that this
> element is clickable on the page
>
>   $('#prev').bind('click', function() {...}
>
> <img id="prev" src="images/prev01.png">

Reply via email to