Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="myApp" ng-controller="myCtrl">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  
  <ul id="filters">
    <li>
      Year
      <select 
        class="year" 
        ng-model="selectedPublisher" 
        ng-options="item.year for item in publishers"
      >
      </select>
      |
    </li>
    <li ng-hide="selectedPublisher.year == 'All'">
      Quarter
      <select
        class="quarter" 
        ng-model="selectedQuarter" 
        ng-options="item for item in selectedPublisher.quarters"
      >
      </select>
      |
    </li>
  </ul>
  
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers