AngularJS Example:

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<div ng-app>
    <button class="btn btn-setting" ng-init="showSearch = true" ng-click="showSearch = (showSearch) ? false : true;" > 
        <img src="theme/images/settings.png" width="111" />
    </button>
    
    <div ng-show="showSearch">Hello World</div>
</div>