Guest User

Untitled

a guest
Jul 17th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. branding: [
  2. {
  3. "brand": "test",
  4. "url": "test",
  5. "guidelines": [
  6. {"name": "t1","url": "t1"},
  7. {"name": "t2","url": "t2"},
  8. {"name": "t3","url": "t3"},
  9. {"name": "t4","url": "t4"}
  10. ]
  11. },
  12. {
  13. "brand": "test1",
  14. "url": "test1",
  15. }
  16. ]
  17.  
  18. <ul>
  19. {{#each branding}}
  20. <li>
  21. <a href="/branding/{{ key.url }}">{{ name }}
  22. </a>
  23. </li>
  24. {{/each}}
  25. </ul>
  26.  
  27. <ul>
  28. {{#each branding}}
  29. <li>
  30. <a class="anchors" href="#">{{ name }}
  31. </a>
  32. </li>
  33. {{/each}}
  34. </ul>
  35.  
  36. var classname =document.getElementsByClassName("anchors");
  37. for (var i = 0; i < classname.length; i++) {
  38. classname[i].addEventListener('click', function()
  39. {this.parentElement.classList.add("active");
  40. });
  41. }
Add Comment
Please, Sign In to add comment