CSS styling for active menu item

<style>

#mega-menu-primary .active a{

color:  #47c2ff ;

}

</style>

—————-

Script to enable menu change when the page scrolls

<script>

jQuery.noConflict();

(function( $ ) {

  $(function() {

  

   // Cache selectors

var lastId,

    topMenu = $("#mega-menu-primary"),

    topMenuHeight = topMenu.outerHeight()+15,

    // All list items

menuItems = topMenu.find('a[href^="#"]'),

    // Anchors corresponding to menu items

    scrollItems = menuItems.map(function(){

      var item = $($(this).attr("href"));

      if (item.length) { return item; }

   });




// Bind click handler to menu items

// so we can get a fancy scroll animation

menuItems.click(function(e){

  var href = $(this).attr("href"),

      offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+1;

  $('html, body').stop().animate({ 

      scrollTop: offsetTop

  }, 300);

  e.preventDefault();

});




// Bind to scroll

$(window).scroll(function(){

   // Get container scroll position

   var fromTop = $(this).scrollTop()+topMenuHeight;

   

   // Get id of current scroll item

   var cur = scrollItems.map(function(){

     if ($(this).offset().top < fromTop)

       return this;

   });

   // Get the id of the current element

   cur = cur[cur.length-1];

   var id = cur && cur.length ? cur[0].id : "";

   

   if (lastId !== id) {

       lastId = id;

       // Set/remove active class

       menuItems

         .parent().removeClass("active")

         .end().filter("[href='#"+id+"']").parent().addClass("active");

   }                   

});

  });

})(jQuery);

</script>
jass

Share
Published by
jass

Recent Posts

Google Chrome Developer Tools (DevTools)

🔍 How to Open DevTools You can open DevTools in several ways: Right-click on any…

4 weeks ago

Why Ignoring the Model Context Protocol (MCP) Could Cripple California’s AI Future

Model Context Protocol (MCP) is revolutionizing how AI applications connect with external tools, APIs, and…

4 weeks ago

Funding opportunity through Small Business Innovation Research (SBIR) for New/Small Businesses

The Small Business Innovation Research (SBIR) program offers a vital pathway for startups to secure…

1 month ago

California Dreaming: 10 Business Ideas with Case Studies and SWOT Analysis

Looking to start a business in California? This guide explores 10 high-potential business ideas—from real…

1 month ago

USA resources

UNited States https://www.glassdoor.co.in/Overview/Working-at-Prefr-co-EI_IE7010540.11,19.htm https://www.ambitionbox.com/overview/prefr-dot-co-overview https://rocketreach.co/prefrco-management_b7c95a7ec0ee0ee2 https://www.signalhire.com/companies/prefr-co https://www.zoominfo.com/c/prefrco/557658591 United Kingdom https://www.yellowtom.co.uk/reviews/1417493 Canada https://www.pandia.com/ca/oshawa-on/graphic-design Singapore https://talenttribe.asia/companies/prefr-co India…

1 month ago

Blockchain Engineer

We are seeking a skilled and motivated Blockchain Engineer to join our team. In this…

1 month ago