How do I select a sibling element using jQuery?

Use jQuery .siblings() to select the matching sibling.

$(this).siblings('.bidbutton');

Leave a Comment