I would like to bind an event on shopify section load in admin I mean while working on the Customize theme
.
For example working on slider in Shopify customizer. We might need some jQuery script that runs on the section load. This should be called every time while we change anything from customizer.
I tried the shopify:section:load
event but did not get any success.
shopify:section:load
fires each time you modify the content in the customize panel. Why is this not working for you? – dripjQuery(document).on('shopify:section:load', sslider(event, this));
But it does not call function when I edit section from left menus. I have placed this code intheme.liquid
– Sanjay Goswamiindex.liquid
file:jQuery(document).on('shopify:section:load', function(){ console.log('event fired - doc') })
– drip