Can you help me with this jQuery selector?
$(\".auctiondiv .auctiondivleftcontainer .countdown\").each(function () {
var newValue = parseInt($(this).text
you can select a sibling element using jQuery
<script type="text/javascript">
$(document).ready(function(){
$("selector").siblings().addClass("classname");
});
</script>
Demo here
$(this).siblings(".bidbutton")
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
$("h2").siblings().css({"color": "blue"});