Can't bind event to <img> with a title tag

Can't bind event to <img> with a title tag


This works:
nextTag = $("<img src='image.gif' alt='value' />");
nextTag.bind('click', clickMe);
This Fails:
nextTag = $("<img src='image.gif' title='value' />");
nextTag.bind('click', clickMe);
with a no such method error. Should I submit this to the Bug Tracker?