Toast Javascript Off Definition


/ Published in: JavaScript
Save to your folder(s)

The Javascript code to activate a CSS transition.


Copy this code and paste it in your HTML
  1. function hideToast(){
  2. var alert = document.getElementById("toast");
  3. alert.style.opacity = 0;
  4.  
  5. }

Report this snippet


Comments


You need to login to view comments.