I have the following:
<div class="modal hide fade" id="adminDialog" style="display: none;">
<div class="modal-header">
<a data-dismiss="modal" class="close">×</a>
<h3 id='dialog-heading'></h3>
</div>
</div>
I created this variable:
dialogDiv = $('#adminDialog');
I would like to change the text of the heading. If I want to do this do I need to
use $('#dialog-heading').text()
or is there a shortcut way that is based on the dialogDiv variable?