Question

How does one add a conditional inside of a tag (link/anchor in my case) in jade?

Here's my pseudo code that of course won't work:

a(href="/foo", class="if (current_route[1] == 'foo'){active}") Go to Foo
Was it helpful?

Solution

How about

a(href="/foo", class=(current_route[1] === 'foo')? "active" : "") Go to Foo

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top