checkbox.checked = true/false
in JavaScript.w--redirected-checked
to .w-checkbox-input
when checked..w-checkbox-input.w--redirected-checked { background-color: #007BFF; }
.w--redirected-checked
in JavaScript to update visuals.You can control a Webflow checkbox with JavaScript by toggling its checked
property and styling it using Webflow’s built-in interactions or custom CSS. Here’s how:
checked
attribute.div
(e.g., .w-checkbox
).w--redirected-checked
class to the wrapping div
.Use CSS to target the Webflow-added class:
.w-checkbox-input.w--redirected-checked { background-color: #007BFF !important; /* Example: Change color when checked */}
When updating the checkbox with JavaScript, manually trigger the visual change by adding or removing the Webflow class:
const checkbox = document.getElementById("myCheckbox");const wrapper = checkbox.closest('.w-checkbox');checkbox.addEventListener("change", function() { if (checkbox.checked) { wrapper.querySelector('.w-checkbox-input').classList.add("w--redirected-checked"); } else { wrapper.querySelector('.w-checkbox-input').classList.remove("w--redirected-checked"); }});
.w-checkbox-input
div.You can programmatically toggle a checkbox with checkbox.checked = true/false
, but Webflow’s styling requires manually adding .w--redirected-checked
to .w-checkbox-input
. Use JavaScript or Webflow interactions to ensure proper styling updates.