I have a Bootstrap Model working fine, except that it is visible when the document loads and I can\'t work out how to make the initial state invisible?
Following documentation, add hide class to the modal.
hide
<div class="modal hide fade"> ... </div>
Turns out simply adding style="display: none" to the modal outer div did the trick.
style="display: none"