Message  

Message thông báo có nút close

Thêm sản phẩm thành công

Go to your special offers page to see now.

Xem code

<div class="ui positive message small">
    <i class="close icon"></i>
    <div class="header">
        Thêm sản phẩm thành công
    </div>
    <p>Go to your <b>special offers</b> page to see now.</p>
</div>
    

$('.message .close')
    .on('click', function () {
        $(this)
            .closest('.message')
            .transition('fade')
        ;
});
    

Warning

You must register before you can do that!
Visit our registration page, then try again
Xem code

<div class="ui warning message">
  <i class="close icon"></i>
  <div class="header">
    You must register before you can do that!
  </div>
  Visit our registration page, then try again
</div>
    

Info

Was this what you wanted?
  • It's good to see you again.
  • Did you know it's been a while?
Xem code

<div class="ui info message">
  <i class="close icon"></i>
  <div class="header">
    Was this what you wanted?
  </div>
  <ul class="list">
    <li>It's good to see you again.</li>
    <li>Did you know it's been a while?</li>
  </ul>
</div>
    

Negative / Error

There was some errors with your submission
  • You must include both a upper and lower case letters in your password.
  • You need to select your home country.
Xem code

<div class="ui error message">
  <i class="close icon"></i>
  <div class="header">
    There was some errors with your submission
  </div>
  <ul class="list">
    <li>You must include both a upper and lower case letters in your password.</li>
    <li>You need to select your home country.</li>
  </ul>
</div>
    
Xem thêm về mesasge tại đây : Link