GIF89a php
Current File : /home/hencockfreshchic/public_html/app/js/popUP.js
function popUP(msgg)
{
	var x = document.getElementById("snackbar");
	      	$("#snack_msgg").html(msgg);
 			 x.className = "show";
  			setTimeout(function(){ x.className = x.className.replace("show", "Hello"); }, 3000);
}