1
2
3
<div id="showcase">
  <ul class="nav">
...

JavaScript Tab-Switching in jQuery

by Aupajo, November 19, 2008 00:45, No refactoring, tagged with javascript, tabs, jquery

Is there a better way?

Ca3dc3f93730afb41d6753d8bf010a38 Talk
1
2
3
4
def tab(name, options = {})
  if name == controller.controller_name.humanize || root_of_path.humanize == name
    content_tag :li, link_to("<span>#{name}</span>", options), :class => "active"
...

Ruby How to DRY this up

by idlefingers, July 25, 2008 13:30, 8 refactorings, tagged with rails, tabs

This is for a tabbed naviga...

2b404bb55d9b5dc78841795c4b731771 Talk