wc_no_js()
NO JS handling.
No Hooks.
Returns
null. Nothing (null).
Usage
wc_no_js();
Changelog
| Since 3.4.0 | Introduced. |
wc_no_js() wc no js code WC 10.6.2
<?php
function wc_no_js() {
$type_attr = current_theme_supports( 'html5', 'script' ) ? '' : " type='text/javascript'";
?>
<script<?php echo $type_attr; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>>
(function () {
var c = document.body.className;
c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
document.body.className = c;
})();
</script>
<?php
}