What\'s the quickest and easiest way to add the \"active\" class to a link, so it can be styled? I\'m developing an app in CI, and I\'d like a quick easy way to do this automat
To adding active class (class=”active”) to a link , I’ve done it by doing this: In view
In controller
$data['home']="active";
Maybe it's not your solution. but it works for me.