You need to call the bootstrapSwitch() again after adding and with a new ID, class or else it will alter the states of existing toggle as well.
$('.btn').on('click', function () {
$('p').after(
''
);
$('.newBSswitch').bootstrapSwitch('state', true); // Add
});
JSfiddle