show/hide this revision's text 2 added 187 characters in body

You don't write what you got only want you expect. Actually what you should getwith your code is the div with class somethingElse. To get i'd 2 you would do.

$(....).prev(".item");

with no args, prev wil get the element just before in the DOM, mo matter style or type.

What you do is pretty much equal to

$("#3").prev()

only slower. The first selection has no effect unless you use end() but is not needed when getting objects by id anyways.

show/hide this revision's text 1

You don't write what you got only want you expect. Actually what you should getwith your code is the div with class somethingElse. To get i'd 2 you would do.

$(....).prev(".item");

with no args, prev wil get the element just before in the DOM, mo matter style or type.