Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

notify js

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

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

notify 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');
});
Comment

notify.js

import toaster from "toasted-notes";
import "toasted-notes/src/styles.css"; // optional styles
toaster.notify("i am notifying you i will exit after 2s", {duration: 2000})
Comment

notify js

$.notify("BOOM!", "error");
Comment

notify js

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

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

notify js

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

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

PREVIOUS NEXT
Code Example
Javascript :: loop through an array 
Javascript :: node.js 
Javascript :: read and save excel with react 
Javascript :: useReducer() hook react 
Javascript :: Creating New Block for blockchain 
Javascript :: javascript Arrow Function with No Argument 
Javascript :: how to use ejs with client side ejs 
Javascript :: js embedded function 
Javascript :: angular import service 
Javascript :: javascript difference between window and Window 
Javascript :: fetch composition API in Vue3 
Javascript :: Changes not staged for commit: modified: ../package.json 
Javascript :: node api with mongodb 
Javascript :: node express chat app 
Javascript :: javascript key value map 
Javascript :: .then function 
Javascript :: javascript this keyword 
Javascript :: how to set three js canvas width 100% 
Javascript :: for of 
Javascript :: nodejs input 
Javascript :: what is bom in javascript 
Javascript :: angular input decimal pipe 
Javascript :: dispatch store 
Javascript :: if is a string javascript 
Javascript :: find last item in an array JS 
Javascript :: javascript function destructuring 
Javascript :: redux workflow 
Javascript :: react lifecycle hooks 
Javascript :: typedjs 
Javascript :: timer javascript 
ADD CONTENT
Topic
Content
Source link
Name
2+6 =