Open a Bootstrap 2 modal from a link

<a href="#terms" role="button" class="btn" data-toggle="modal">Read the terms</a>

<div id="terms" class="modal hide fade" tabindex="-1" role="dialog" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal">&times;</button>
    <h3>Terms of service</h3>
  </div>
  <div class="modal-body"><p>Delivery is charged per order, not per item.</p></div>
</div>