Can you help me with this jQuery selector?
$(\".auctiondiv .auctiondivleftcontainer .countdown\").each(function () {
var newValue = parseInt($(this).text
Here is a link which is useful to learn about select a siblings element in Jquery.
How do I select a sibling element using jQuery
$("selector").nextAll();
$("selector").prev();
you can also find an element using Jquery selector
$("h2").siblings('table').find('tr');
For more information, refer this link next(), nextAll(), prev(), prevAll(), find() and siblings in JQuery