Приветствую. Вопрос по магазину на wordpress+woocommerce. С помощью каких событий можно подключиться и настраивать плагин yith-woocommerce-compare? к yith_woocompare_open_popup подключиться получается, пишет hello, а вот к элементу обратиться нет..
$('body').bind('yith_woocompare_open_popup', function() {
console.log("hello!");
var number = $('.compare-list .input-text.qty.text').val();
console.log(number);
});
});
<table class="compare-list">
<thead>
<tr>
<td>
<input type="number" step="1" min="1" max="27" id="num_count" name="quantity" value="1" title="Кол." class="input-text qty text" size="4">
</td>
</thead>
</table>