0

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 ?

anu
  • 25
  • 1
  • 7

1 Answers1

0

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>
Sarika Koli
  • 773
  • 6
  • 11