Execute javscript when theme customizer loads (autosave issue)
In the JavaScript CODE below: ( function( wp, $ ) { function bob() { alert(‘bob’); } // Etc } )( wp, jQuery ); bob function is scoped only within this block: ( function( wp, $ ) { // functions defined here are not accessible from outside } )( wp, jQuery ); That’s why when you … Read more