Menu
  1. World
    • All
    • World
      More
    1. Lifestyle
      • All
      • Arts
      • Fashion
      • Health
      • Photography
      • Recipes
      • Travel
      • Cars
      • Business
        More

        No content

        A problem occurred while loading content.

        Previous Next
      1. Fashion
        Previous Next
      2. Sport
      3. Music

        No content

        A problem occurred while loading content.

        Previous Next
      4. Events
        Previous Next
      5. Forum
      6. Maps
      7. Features
      User Menu Search
      Close

      ALERT MESSAGES

      View Code
      <div role="alert" class="alert alert-warning fade in">
            <button data-dismiss="alert" class="close" type="button"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
            <strong>Holy guacamole!</strong> Best check yo self, you're not looking too good.
          </div>
      View Code
      <div role="alert" class="alert alert-danger fade in">
            <button data-dismiss="alert" class="close" type="button"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
            <h4>Oh snap! You got an error!</h4>
            <p>Change this and that and try again. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Cras mattis consectetur purus sit amet fermentum.</p>
            <p>
              <button class="btn btn-danger" type="button">Take this action</button>
              <button class="btn btn-default" type="button">Or do this</button>
            </p>
          </div>

      Usage

      Enable dismissal of an alert via JavaScript:

      $(".alert").alert()

      Markup

      Just add data-dismiss="alert" to your close button to automatically give an alert close functionality.

      <button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>

      Methods

      $().alert()

      Wraps all alerts with close functionality. To have your alerts animate out when closed, make sure they have the .fade and .in class already applied to them.

      Closes an alert.

      $(".alert").alert('close')

      Events

      Bootstrap's alert class exposes a few events for hooking into alert functionality.

      Event Type Description
      close.bs.alert This event fires immediately when the close instance method is called.
      closed.bs.alert This event is fired when the alert has been closed (will wait for CSS transitions to complete).
      $('#my-alert').on('closed.bs.alert', function () {
        // do something…
      })

      FOLLOW US

      Terms Of UsePrivacy StatementCopyright 2024 NewsMagazine DNN/DotNetNuke/EVOQ theme Demo by EasyDNNsolutions.com
      Back To Top