Can you help me with this jQuery selector?
$(\".auctiondiv .auctiondivleftcontainer .countdown\").each(function () { var newValue = parseInt($(this).text
Since $(this) refers to .countdown you can use $(this).next() or $(this).next('button') more specifically.
$(this)
.countdown
$(this).next()
$(this).next('button')