jQuery('#table_1 tbody tr').each(function() {
var $this = jQuery(this);
city = $this.find("td").eq(1).text();
});
var newc = jQuery('#table_1_1_filter button.dropdown-toggle .filter-option')[0]; выводится: <span class="filter-option pull-left">Москва</span> Но, затем я не могу получить даже текст из span var title1 = newc.textContent; var title2 = newc.innerHTML; var title3 = newc.text(); console.log(title1,title2,title3);
Непонятно, зачем здесь бутстрап приплетать.
ReferenceError: setCookie is not defined
add_action( 'woocommerce_order_status_changed', 'deleteCookie', 99, 3 );
function deleteCookie($order_id, $old_status, $new_status) {
if( ($new_status == "completed") || ($new_status == "processing") ) {
?>
<script>
setCookie('fooboo', "", {
expires: -1
});
</script>
<?php }
}