Good point, Paul. Assuming it's not too much work, changing the IMG to an A
tag would take care of most your problems... You wouldn't need ugly js hacks
to get IE to understand "hover" and the only thing you'd need to do is

$('#prev').click(function(){
  /*do something;*/
  return false;
});

Brian.

On 4/15/07, Final Coat Design <[EMAIL PROTECTED]> wrote:


add $('#prev').css('cursor', 'pointer');

On Apr 15, 2:44 am, "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">
>
> This doesn't show the click cursor (finger pointing to) when the
> cursor hovers over the element. Do I have to change this to a '<a
> href="..."' but then what should I use as href="???" or is there a
> better way? Shouldn't any element bound to a click handler show this
> by default?
>
> O. Wyss


Reply via email to