vote up 3 vote down star

I have the following:

$('#widgets ul').sortable(
{
  connectWith: ['#widgets ul'],
  opacity: 0.7,
  start: function(e, ui) {
    fromWidgetPosition = ui.item.prevAll().length + 1;
    fromRowId = ui.element.attr('id');

I just upgraded jQuery from 1.2.6 to 1.3.2, and I also upgraded the jQuery UI library to the latest version.

flag

25% accept rate
Why isn't anything closed out in your code snippet? – jakeisonline Oct 1 at 18:10
It's a partial code snipped. I knew something was deprecated in that block, so the entire thing was not needed. – Chad Johnson Oct 1 at 19:13

1 Answer

vote up 2 vote down check

The 'element' got removed in newer jQuery UI versions, see this bug report and the corresponding source changeset.

According to those, you should use $(this) instead:

fromRowId = $(this).attr('id');
link|flag
Excellent. I want to tongue kiss you now. – Chad Johnson Oct 1 at 19:07
Ahem - could we go with the usual upvote/accept answer instead of the kissing? ;) – Henrik Opel Oct 1 at 19:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.