How to immediately apply values in customizer js api
Since you are invoking the change callback directly: value.call( customize, func ); Since you’re not passing in the value, then newval will be undefined and $customStylesheet.text(newval) will do nothing. You need to pass in the value like so: value.call( customize, func, value.get() ); Nevertheless, it would be better to re-use the existing style element that … Read more