How do you increment the value of a data attribute for all of the siblings of an object?
This works:
$('#id').data('position')+1
but this doesn't
$('#id').siblings().data('position') + 1;
How do you increment the value of a data attribute for all of the siblings of an object?
This works:
$('#id').data('position')+1
but this doesn't
$('#id').siblings().data('position') + 1;
Because .siblings() return an array of elements, therefore .data may not work. You have to iterate all element one by one like this