skip to Main Content

Woocommerce – Stop a function if page has a class

I have a simple function that appends the shipping details, to billing details in my woocommerce checkout. However I want this function to stop firing once a class has ben added to a div. function billingclick() { $('#billing_first_name').val($('#shipping_first_name').val()); $('#billing_last_name').val($('#shipping_last_name').val()); };…

VIEW QUESTION
Back To Top
Search