Advertisement
Guest User

Untitled

a guest
Jul 1st, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <span class="label label-primary">Age</span>
  2. <div class="btn-group" id=ageID>
  3. <button type="button" style="width:120px" class="btnMyAge btn-default" id="3">Under 10</button>
  4. <button type="button" style="width:120px" class="btnMyAge btn-default" id="1">Under 50</button>
  5. <button type="button" style="width:120px" class="btnMyAge btn-default" id="2">Over 50</button>
  6.  
  7. </div>
  8.  
  9. <script>
  10. $(".btn-group > .btnMyAge").click(function () {
  11. $(this).addClass("active").siblings().removeClass("active");
  12. })
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement