You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Create variables and assign them valuesvar inStock;var shipping;inStock = true;shipping = false;/* Some other processing might go here and, as a result, the script might need to change these values. */inStock = false;shipping = true;// Get the element with an id of stockvar elStock = document.getElementById('stock');// Set class name with value of inStock variableelStock.className = inStock;// Get the element with an id of shippingvar elShip = document.getElementById('shipping');// Set class name with value of shipping variableelShip.className = shipping;