I have a message in a
tag. I wanted to display it for few minutes and then blur it.
<p>Your message has been send successfully!!!</p>
Can anyone suggest how to do this ?
I have a message in a
tag. I wanted to display it for few minutes and then blur it.
<p>Your message has been send successfully!!!</p>
Can anyone suggest how to do this ?
Hello please check it:
$("p").show().delay(2000).fadeOut();
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>Test Message</p>