AngularJS Example:

HTML

<!doctype html>
<html ng-app>
<head>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js"></script>
</head>
<body>
<div>
    <div class="filter" id="specie-filter" ng-controller="SpeciesController">
        <label><h2>{{name}}</h2></label>
        <ul>
            <li class="checked" v="all"> All</li>

        </ul>
    </div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js"></script>
<script>
    var dcApp = augular.module("dcApp", [])
    dcApp.controller("SpeciesController",
            function ($scope) {
                $scope.species = ["Human", "Mouse"]
                $scope.name="SpeciesName"
            });
</script>


</body>

</html>