I create a simple example that do what you want.
HTML
<div class="col-md-6">
<h1>Form</h1>
<form role="form">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" name="name" class="form-control bind" id="name" placeholder="Enter Name">
</div>
<div class="form-group">
<label for="tagline">Name:</label>
<input type="text" name="tagline" class="form-control bind" id="tagline" placeholder="Enter tagline">
</div>
<div class="checkbox">
<label>
<input type="checkbox"> Check me out
</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
<div class="col-md-6">
<h1>Profile</h1>
<h1 id="bind-name"></h1>
<h4 id="bind-tagline"></h4>
</div>
Jquery:
$('.bind').on('change', function(){
$this = $(this);
element_name = $this.attr('name');
$('#bind-'+element_name).html($this.val());
});
you can check it here:
http://www.bootply.com/h7CKrnNtWw