Modal Windows

Modal One Example

Launch Modal One

Additional button styles can be found on the AAA Style Guide page.

Modal One Button ( data-target="#ModalOne" ) Unique id = "#ModalOne"

Markup to copy/paste for Modal One Button

<!-- Begin Modal One Code for modal button/link -->
                    <a href="#" class="button-link button-link-default alt" data-toggle="modal"
                            data-target="#ModalOne">Launch Modal One
                    </a>
<!-- End Modal One Code for modal button/link -->

Markup to copy/paste for Modal One Content

<!-- Begin Modal One Code for modal content -->
                    <div id="ModalOne" class="modal fade" tabindex="-1" role="dialog">
                        <div class="modal-dialog">
                            <div class="modal-content">
                                <div class="modal-header">
                                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
                                            aria-hidden="true">&times;</span></button>
                                    <h4 class="modal-title">This is the Title for Modal One</h4>
                                </div>
                                <div class="modal-body"><p>What is Lorem Ipsum?
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
                                    Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a type specimen book.
                                    It has survived not only five centuries, but also the leap into electronic
                                    typesetting, remaining essentially unchanged. It was popularised in the 1960s with
                                    the release of Letraset sheets containing Lorem Ipsum passages, and more recently
                                    with desktop publishing software like Aldus PageMaker including versions of Lorem
                                    Ipsum.</p></div>
                                <div class="modal-footer">
                                    <button type="button" class="button-link button-link-default" data-dismiss="modal">
                                        Close
                                    </button>
                                    <button type="button" class="button-link button-link-default alt">Save changes
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
<!-- End Modal One Code for modal content -->

Modal Two Example

Launch Modal Two

Modal Two Button ( data-target="#ModalTwo" ) Unique id = "#ModalTwo"

Markup to copy/paste for Modal Two Button

<!-- Begin Modal Two Code for modal button/link -->
                    <a href="#" class="button-link button-link-default alt" data-toggle="modal"
                            data-target="#ModalTwo">Launch Modal Two
                    </a>
<!-- End Modal Two Code for modal button/link -->

Markup to copy/paste for Modal Two Content

<!-- Begin Modal Two Code for modal content -->
                    <div id="ModalTwo" class="modal fade" tabindex="-1" role="dialog">
                        <div class="modal-dialog">
                            <div class="modal-content">
                                <div class="modal-header">
                                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
                                            aria-hidden="true">&times;</span></button>
                                    <h4 class="modal-title">This is the Title for Modal One</h4>
                                </div>
                                <div class="modal-body"><p>What is Lorem Ipsum?
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
                                    Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a type specimen book.
                                    It has survived not only five centuries, but also the leap into electronic
                                    typesetting, remaining essentially unchanged. It was popularised in the 1960s with
                                    the release of Letraset sheets containing Lorem Ipsum passages, and more recently
                                    with desktop publishing software like Aldus PageMaker including versions of Lorem
                                    Ipsum.</p></div>
                                <div class="modal-footer">
                                    <button type="button" class="button-link button-link-default" data-dismiss="modal">
                                        Close
                                    </button>
                                    <button type="button" class="button-link button-link-default alt">Save changes
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
<!-- End Modal Two Code for modal content -->

Modal Three Example

(Opens Modal with a link within content)

What is Lorem Ipsum? Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley Launch Modal Three of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

Modal Three Button ( data-target="#ModalThree" ) Unique id = "#ModalThree"

Markup for stand-alone link placed within a sentence (as above)

<a href="#" data-toggle="modal" data-target="#ModalThree">Launch Modal Three</a>

Markup to copy/paste for Modal Three Content

<!-- Begin Modal Three Code for modal content -->
                    <div id="ModalThree" class="modal fade" tabindex="-1" role="dialog">
                        <div class="modal-dialog">
                            <div class="modal-content">
                                <div class="modal-header">
                                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
                                            aria-hidden="true">&times;</span></button>
                                    <h4 class="modal-title">This is the Title for Modal Three</h4>
                                </div>
                                <div class="modal-body"><p>What is Lorem Ipsum?
                                    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
                                    Ipsum has been the industry's standard dummy text ever since the 1500s, when an
                                    unknown printer took a galley of type and scrambled it to make a type specimen book.
                                    It has survived not only five centuries, but also the leap into electronic
                                    typesetting, remaining essentially unchanged. It was popularised in the 1960s with
                                    the release of Letraset sheets containing Lorem Ipsum passages, and more recently
                                    with desktop publishing software like Aldus PageMaker including versions of Lorem
                                    Ipsum.</p></div>
                                <div class="modal-footer">
                                    <button type="button" class="button-link button-link-default" data-dismiss="modal">
                                        Close
                                    </button>
                                    <button type="button" class="button-link button-link-default alt">Save changes
                                    </button>
                                </div>
                            </div>
                        </div>
                    </div>
<!-- End Modal Three Code for modal content -->