Skip to content

Instantly share code, notes, and snippets.

@MjHead
Last active January 25, 2018 12:51
Show Gist options
  • Save MjHead/24fa5cb91e3c0445a6dad4eb70ccda75 to your computer and use it in GitHub Desktop.
Save MjHead/24fa5cb91e3c0445a6dad4eb70ccda75 to your computer and use it in GitHub Desktop.
( function( $ ) {
"use strict";
var myElementorFront = {
init: function() {
elementorFrontend.hooks.addAction( 'frontend/element_ready/wp-widget-my_widget.default', myElementorFront.initWidget );
},
initWidget: function( $scope ) {
// Your script
}
};
$( window ).on( 'elementor/frontend/init', myElementorFront.init );
}( jQuery ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment