Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a menu bar whose status/color etc changes when clicked. These belong to different JSP/HTML pages. When I click on the page, there is a handlebar #bindAttr which decides the class of the each tabbed menuitem. For e.g.

<li id="index" {{#bindAttr class="active"}}>
<a href="./index.jsp">
<i class="icon-dashboard"></i>
<span>Dashboard</span>
</a>
</li>

What I need here is also to pass something else so that the computed property can find out based on the location.href whether this class should be true. Is there any way to pass the id of the "li" tag to the computed property "active"

share|improve this question
1  
Solved it. Custom HandleBar Helper Function <li {{activetab "index.jsp"}}> Handlebars.registerHelper("activetab", function(tabname) { var currentPage = window.location.href; console.log(currentPage); if(currentPage.indexOf(tabname)!=-1){ return "class=active"; } else{ return ""; } }); – Roney Banerjee Jul 6 '12 at 4:52
post this as an answer, so you can accept it :) – sly7_7 Jul 16 '12 at 7:33

1 Answer

up vote 0 down vote accepted

Solved it. Custom HandleBar Helper Function

<li {{activetab "index.jsp"}}> 

Handlebars.registerHelper("activetab", function(tabname) { 
var currentPage = window.location.href; console.log(currentPage); if(currentPage.indexOf(tabname)!=-1){
 return "class=active"; 
} 
else{ 
 return ""; 
} 
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.