make an age selector on click
I have this dropdown menu (bootstrap):
- <div class="mutual_interests_search dropdown col-xs-4"> <button class="btn btn-primary dropdown-toggle" type="button" data-toggle="dropdown">Looking for people that:
- <span class="caret"></span></button>
- <ul class="dropdown-menu">
- <li><a href="#">Eating Well</a></li>
- <li><a href="#">Train Hard</a></li>
- <li><a href="#">Looking for motivation</a></li>
- </ul>
- </div>
I need to show the user a age selector box when he clicks and picking his preference from the drop down.
Bascially should I use .OnClick method ? and what else should I use ?
thanks for helping.