From e5b4fadb103ff978a0df797c405f1017dc123e57 Mon Sep 17 00:00:00 2001 From: Arctic Code Date: Mon, 26 Aug 2013 09:31:19 -0500 Subject: [PATCH] Add fade effect for messages This will give all return messages a fade effect to not be as jarring --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 3f49372..fd0acba 100644 --- a/index.php +++ b/index.php @@ -205,7 +205,7 @@ event.preventDefault(); event.stopPropagation(); $.post("process.php?token=", $(this).serialize(), function(data){ - $("#message").html(data); + $("#message").hide().html(data).fadeIn("slow"); }); });