Code works in jsfiddle but not online
<p>Enjoy a fantastic stay at a timeshare resort just 1 mile from the main entrance to Walt Disney World. Amenities include: mini golf, a large number of pools and paddle boats to name just a few.</p>
<button class="btn btn-sm btn-success">Get More Info</button>
</div>
<div class="col-sm-4">
<img src="images/Westgate-Town-Center-Entrance-Balcony.jpg" class="img-responsive" alt="Westgate Town Center Promotion">
</div>
</div>
____________________________
$(document).ready(function(){
$("button").on("click", function(){
var message = $("<span>Call 877-245-4130 to book this package</span>");
$(this).after(message);
$(this).remove();
});
});