[jQuery] can't edit textarea / input texts inside a sortable

[jQuery] can't edit textarea / input texts inside a sortable

hi,
by default, the sortable catches all the click events. so if you want to edit them, you can assign a onclick event which in turn calls focus().
here is the code:
$("input").click(
  function()
       {
         $(this).focus()
       }
  );
avi
--
------------------------------------------------------
Visit me at <a href="http://jodhpuriguy.com">http://jodhpuriguy.com</a>
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/