# ultimate-store-kit/3.1.0/src/js/widgets/mobile-menu.js

Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder, version 3.1.0. 40 lines.

- Page: https://pluginprobe.com/plugins/ultimate-store-kit/3.1.0/code/src/js/widgets/mobile-menu.js
- Raw: https://pluginprobe.com/plugins/ultimate-store-kit/3.1.0/raw/src/js/widgets/mobile-menu.js
- Modified: 2026-08-17T09:34:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-store-kit/3.1.0/code/src/js/widgets/mobile-menu.js#L10-L20`.

```javascript
/**
 * Start marker widget script
 */

( function( $, elementor ) {

	'use strict';

	var widgetIconMobileMenu = function( $scope, $ ) {

		var $marker = $scope.find( '.usk-mobile-menu-wrap' );

        if ( ! $marker.length ) {
            return;
        }

		var $tooltip = $marker.find('ul > li > .usk-tippy-tooltip'),
			widgetID = $scope.data('id');
		
		$tooltip.each( function( index ) {
			tippy( this, {
				allowHTML: true,
				theme: 'usk-tippy-' + widgetID
			});
		});

	};


	jQuery(window).on('elementor/frontend/init', function() {
		elementorFrontend.hooks.addAction( 'frontend/element_ready/usk-mobile-menu.default', widgetIconMobileMenu );
	});

}( jQuery, window.elementorFrontend ) );

/**
 * End marker widget script
 */


```
