HTML:
<div class="basket_price_block"> <img src="images/personal_cabinet/basket1.png" class="basket_price_image" alt="" /> <div class="basket_price"> <span class="product_price" data-unitprice="4500">4500</span> <span>USD</span> </div> <div class="selected_basket_product"> <span class="basket_minus_unregistered"> - </span> <input class="basket_number_unregistered" name="basket_number" value="1" /> <span class="basket_plus_unregistered"> + </span> </div> <div class="clear"></div> </div> How to get to the first span from the basket_price block by clicking on any child of the selected_baset_product block?
Suppose I click on - (that is, this is the target ), then selected_basket_product is the parentNode , and then what?

childNodes? learn.javascript.ru/traversing-dom - user194374$(this).parent().siblings('.basket_price').find('span.product_price');? - cyadvertimg'this is childNodes [1]basket_price, and if you choose via [2] then in concol, #text - ddeadlink writes