This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

active State Icon
#7
For all relevant plan links set Additional classes to plan-link plan-link-123 where 123 is plan id to which the link refers.

Custom JS:
Code:
$(function() {
  var prevId;

  function onshowplan() {
    if (prevId) {
      $('.plan-link-' + prevId).removeClass('active');
    }
    
    if (currentPlanId) {
      $('.plan-link-' + currentPlanId).addClass('active');
        prevId = currentPlanId;
    }
  }
  
  $('body').on('showplan', onshowplan);
  onshowplan();
});

Custom CSS:
Code:
.plan-link.active {
  color: red;
}
Reply


Messages In This Thread
active State Icon - by khalil - 27.06.2022, 13:20
RE: active State Icon - by admin - 27.06.2022, 13:29
RE: active State Icon - by khalil - 27.06.2022, 13:35
RE: active State Icon - by batistacaceres - 10.10.2025, 08:13
RE: active State Icon - by Daniel - 10.10.2025, 10:01
RE: active State Icon - by batistacaceres - 13.10.2025, 10:30
RE: active State Icon - by admin - 14.10.2025, 08:50
RE: active State Icon - by batistacaceres - 14.10.2025, 14:00

Forum Jump: