https://purchasing.idaho.gov/wp-content/plugins/megamenu/js/maxmegamenu.js?ver=3.7
Federal opportunity from State of Idaho. Place of performance: ID.
Market snapshot
Baseline awarded-market signal across all contracting (sample of 400 recent awards; refreshed periodically).
Related hubs & trends
Navigate the lattice: hubs for browsing, trends for pricing signals.
Point of Contact
Agency & Office
Description
/*jslint browser: true, white: true, this: true, long: true */ /*global console,jQuery,megamenu,window,navigator*/ /*! Max Mega Menu jQuery Plugin */ (function ( $ ) { "use strict"; $.maxmegamenu = function(menu, options) { var plugin = this; var $menu = $(menu); var $wrap = $(menu).parent(); var $toggle_bar = $menu.siblings(".mega-menu-toggle"); var html_body_class_timeout; var defaults = { event: $menu.attr("data-event"), effect: $menu.attr("data-effect"), effect_speed: parseInt($menu.attr("data-effect-speed")), effect_mobile: $menu.attr("data-effect-mobile"), effect_speed_mobile: parseInt($menu.attr("data-effect-speed-mobile")), panel_width: $menu.attr("data-panel-width"), panel_inner_width: $menu.attr("data-panel-inner-width"), mobile_force_width: $menu.attr("data-mobile-force-width"), mobile_overlay: $menu.attr("data-mobile-overlay"), mobile_state: $menu.attr("data-mobile-state"), mobile_direction: $menu.attr("data-mobile-direction"), second_click: $menu.attr("data-second-click"), vertical_behaviour: $menu.attr("data-vertical-behaviour"), document_click: $menu.attr("data-document-click"), breakpoint: $menu.attr("data-breakpoint"), unbind_events: $menu.attr("data-unbind"), hover_intent_timeout: $menu.attr("data-hover-intent-timeout"), hover_intent_interval: $menu.attr("data-hover-intent-interval") }; plugin.settings = {}; var items_with_submenus = $("li.mega-menu-megamenu.mega-menu-item-has-children," + "li.mega-menu-flyout.mega-menu-item-has-children," + "li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item-has-children," + "li.mega-menu-flyout li.mega-menu-item-has-children", $menu); var collapse_children_parents = $("li.mega-menu-megamenu li.mega-menu-item-has-children.mega-collapse-children > a.mega-menu-link", $menu); plugin.addAnimatingClass = function(element) { if (plugin.settings.effect === "disabled") { return; } $(".mega-animating").removeClass("mega-animating"); var timeout = plugin.settings.effect_speed + parseInt(plugin.settings.hover_intent_timeout, 10); element.addClass("mega-animating"); setTimeout(function() { element.removeClass("mega-animating"); }, timeout ); }; plugin.hideAllPanels = function() { $(".mega-toggle-on > a.mega-menu-link", $menu).each(function() { plugin.hidePanel($(this), false); }); }; plugin.expandMobileSubMenus = function() { if (plugin.settings.mobile_direction !== 'vertical') { return; } $(".mega-menu-item-has-children.mega-expand-on-mobile > a.mega-menu-link", $menu).each(function() { plugin.showPanel($(this), true); }); if ( plugin.settings.mobile_state == 'expand_all' ) { $(".mega-menu-item-has-children:not(.mega-toggle-on) > a.mega-menu-link", $menu).each(function() { plugin.showPanel($(this), true); }); } if ( plugin.settings.mobile_state == 'expand_active' ) { const activeItemSelectors = [ "li.mega-current-menu-ancestor.mega-menu-item-has-children > a.mega-menu-link", "li.mega-current-menu-item.mega-menu-item-has-children > a.mega-menu-link", "li.mega-current-menu-parent.mega-menu-item-has-children > a.mega-menu-link", "li.mega-current_page_ancestor.mega-menu-item-has-children > a.mega-menu-link", "li.mega-current_page_item.mega-menu-item-has-children > a.mega-menu-link" ]; $menu.find(activeItemSelectors.join(', ')).each(function() { plugin.showPanel($(this), true); }); } } plugin.hideSiblingPanels = function(anchor, immediate) { anchor.parent().parent().find(".mega-toggle-on").children("a.mega-menu-link").each(function() { // all open children of open siblings plugin.hidePanel($(this), immediate); }); }; plugin.isDesktopView = function() { var width = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0); return width > plugin.settings.breakpoint; }; plugin.isMobileView = function() { return !plugin.isDesktopView(); }; plugin.showPanel = function(anchor, immediate) { if ( $.isNumeric(anchor) ) { anchor = $("li.mega-menu-item-" + anchor, $menu).find("a.mega-menu-link").first(); } else if ( anchor.is("li.mega-menu-item") ) { anchor = anchor.find("a.mega-menu-link").first(); } anchor.parent().triggerHandler("before_open_panel"); anchor.parent().find("[aria-expanded]").first().attr("aria-expanded", "true"); $(".mega-animating").removeClass("mega-animating"); if (plugin.isMobileView() && anchor.parent().hasClass("mega-hide-sub-menu-on-mobile")) { return; } if (plugin.isDesktopView() && ( $menu.hasClass("mega-menu-horizontal") || $menu.hasClass("mega-menu-vertical") ) && !anchor.parent().hasClass("mega-collapse-children")) { plugin.hideSiblingPanels(anchor, true); } if ((plugin.isMobileView() && $wrap.hasClass("mega-keyboard-navigation")) || plugin.settings.vertical_behaviour === "accordion") { plugin.hideSiblingPanels(anchor, false); } plugin.calculateDynamicSubmenuWidths(anchor); // apply jQuery transition (only if the effect is set to "slide", other transitions are CSS based) if ( plugin.shouldUseSlideAnimation(anchor, immediate) ) { var speed = plugin.isMobileView() ? plugin.settings.effect_speed_mobile : plugin.settings.effect_speed; anchor.siblings(".mega-sub-menu").css("display", "none").animate({"height":"show", "paddingTop":"show", "paddingBottom":"show", "minHeight":"show"}, speed, function() { $(this).css("display", ""); }); } anchor.parent().addClass("mega-toggle-on").triggerHandler("open_panel"); }; plugin.shouldUseSlideAnimation = function(anchor, immediate) { if (immediate == true) { return false; } if (anchor.parent().hasClass("mega-collapse-children")) { return true; } if (plugin.isDesktopView() && plugin.settings.effect === "slide") { return true; } if (plugin.isMobileView()) { if (plugin.settings.effect_mobile === "slide") { return true; } if (plugin.settings.effect_mobile === "slide_left" || plugin.settings.effect_mobile === "slide_right") { return plugin.settings.mobile_direction !== "horizontal"; } } return false; }; plugin.hidePanel = function(anchor, immediate) { if ( $.isNumeric(anchor) ) { anchor = $("li.mega-menu-item-" + anchor, $menu).find("a.mega-menu-link").first(); } else if ( anchor.is("li.mega-menu-item") ) { anchor = anchor.find("a.mega-menu-link").first(); } anchor.parent().triggerHandler("before_close_panel"); anchor.parent().find("[aria-expanded]").first().attr("aria-expanded", "false"); if ( plugin.shouldUseSlideAnimation(anchor) ) { var speed = plugin.isMobileView() ? plugin.settings.effect_speed_mobile : plugin.settings.effect_speed; anchor.siblings(".mega-sub-menu").animate({"height":"hide", "paddingTop":"hide", "paddingBottom":"hide", "minHeight":"hide"}, speed, function() { anchor.siblings(".mega-sub-menu").css("display", ""); anchor.parent().removeClass("mega-toggle-on").triggerHandler("close_panel"); }); return; } if (immediate) { anchor.siblings(".mega-sub-menu").css("display", "none").delay(plugin.settings.effect_speed).queue(function(){ $(this).css("display", "").dequeue(); }); } // pause video widget videos anchor.siblings(".mega-sub-menu").find(".widget_media_video video").each(function() { this.player.pause(); }); anchor.parent().removeClass("mega-toggle-on").triggerHandler("close_panel"); plugin.addAnimatingClass(anchor.parent()); }; plugin.calculateDynamicSubmenuWidths = function(anchor) { // apply dynamic width and sub menu position (only to top level mega menus) if (anchor.parent().hasClass("mega-menu-megamenu") && anchor.parent().parent().hasClass("max-mega-menu") && plugin.settings.panel_width ) { if (plugin.isDesktopView()) { var submenu_offset = $menu.offset(); var target_offset = $(plugin.settings.panel_width).offset(); if ( plugin.settings.panel_width == '100vw' ) { target_offset = $('body').offset(); anchor.siblings(".mega-sub-menu").css({ left: (target_offset.left - submenu_offset.left) + "px" }); } else if ( $(plugin.settings.panel_width).length > 0 ) { anchor.siblings(".mega-sub-menu").css({ width: $(plugin.settings.panel_width).outerWidth(), left: (target_offset.left - submenu_offset.left) + "px" }); } } else { anchor.siblings(".mega-sub-menu").css({ width: "", left: "" }); } } // apply inner width to sub menu by adding padding to the left and right of the mega menu if (anchor.parent().hasClass("mega-menu-megamenu") && anchor.parent().parent().hasClass("max-mega-menu") && plugin.settings.panel_inner_width && $(plugin.settings.panel_inner_width).length > 0) { var target_width = 0; if ($(plugin.settings.panel_inner_width).length) { // jQuery selector target_width = parseInt($(plugin.settings.panel_inner_width).width(), 10); } else { // we"re using a pixel width target_width = parseInt(plugin.settings.panel_inner_width, 10); } anchor.siblings(".mega-sub-menu").css({ "paddingLeft": "", "paddingRight": "" }); var submenu_width = parseInt(anchor.siblings(".mega-sub-menu").innerWidth(), 10); if (plugin.isDesktopView() && target_width > 0 && target_width < submenu_width) { anchor.siblings(".mega-sub-menu").css({ "paddingLeft": (submenu_width - target_width) / 2 + "px", "paddingRight": (submenu_width - target_width) / 2 + "px" }); } } }; plugin.bindClickEvents = function() { if ( $wrap.data('has-click-events') === true ) { return; } $wrap.data('has-click-events', true); var dragging = false; $(document).on({ "touchmove": function(e) { dragging = true; }, "touchstart": function(e) { dragging = false; } }); $(document).on("click touchend", function(e) { // hide menu when clicked away from if (!dragging && plugin.settings.document_click === "collapse" && ! $(e.target).closest(".mega-menu-wrap").length ) { plugin.hideAllPanels(); plugin.hideMobileMenu(); } dragging = false; }); var clickable_parents = $("> a.mega-menu-link", items_with_submenus).add(collapse_children_parents); clickable_parents.on("touchend.megamenu", function(e) { if (plugin.settings.event === "hover_intent") { plugin.unbindHoverIntentEvents(); } if (plugin.settings.event === "hover") { plugin.unbindHoverEvents(); } }); clickable_parents.on("click.megamenu", function(e) { if ( $(e.target).hasClass('mega-indicator') ) { return; } if (plugin.isDesktopView() && $(this).parent().hasClass("mega-toggle-on") && $(this).clo
Files
Files size/type shown when available.
BidPulsar Analysis
A practical, capture-style breakdown of fit, requirements, risks, and next steps.
FAQ
How do I use the Market Snapshot?
It summarizes awarded-contract behavior for the opportunity’s NAICS and sector, including a recent pricing band (P10–P90), momentum, and composition. Use it as context, not a guarantee.
Is the data live?
The signal updates as new awarded notices enter the system. Always validate the official award and solicitation details on SAM.gov.
What do P10 and P90 mean?
P10 is the 10th percentile award size and P90 is the 90th percentile. Together they describe the typical spread of award values.