“aviser JS” Réponses codées

aviser JS

$.notify("Hello World");
Gorgeous Gaur

aviser JS

var h5 = $("<h5/>").append("You MUST have some Foo !")

$.notify({
  title: h5
}, { 
  style: 'foo',
  autoHide: false,
  clickToHide: false
});
King Pinaster

aviser JS

var h5 = $("<h5/>").append("You MUST have some Foo !")

$.notify({
  title: h5,
  button: 'Ok'
}, { 
  style: 'foo',
  autoHide: false,
  clickToHide: false
});
King Pinaster

aviser JS

$.notify("BOOM!", "error");
Mountain Goat

aviser JS

//add a new style 'foo'
$.notify.addStyle('foo', {
  html: 
    "<div>" +
      "<div class='clearfix'>" +
        "<div class='title' data-notify-html='title'/>" +
        "<div class='buttons'>" +
          "<button class='no'>Cancel</button>" +
          "<button class='yes' data-notify-text='button'></button>" +
        "</div>" +
      "</div>" +
    "</div>"
});

//listen for click events from this style
$(document).on('click', '.notifyjs-foo-base .no', function() {
  //programmatically trigger propogating hide event
  $(this).trigger('notify-hide');
});
$(document).on('click', '.notifyjs-foo-base .yes', function() {
  //show button text
  alert($(this).text() + " clicked!");
  //hide notification
  $(this).trigger('notify-hide');
});
Depressed Dog

aviser JS

var h5 = $("<h5/>").append("You MUST have some Foo !")

$.notify({
  title: h5,
  button: 'Ok !'
}, { 
  style: 'foo',
  autoHide: false,
  clickToHide: false
});
King Pinaster

Réponses similaires à “aviser JS”

Questions similaires à “aviser JS”

Plus de réponses similaires à “aviser JS” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code