I want to to change the contents below of button group on tap of every button in button group.
<div class="btn-group btn-group-lg">
<button type="button" class="btn btn-primary segmentedButton ">Section1</button>
<button type="button" class="btn btn-primary segmentedButton active">Section2</button>
<button type="button" class="btn btn-primary segmentedButton">Section3</button>
</div>
I don't want load entire page completely. Just contents below should be changed.
A existing example is http://sourcebits.com/app-development-portfolio/ segmented control. is there any easy way to implement that using html and javascript.