Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JQuery fadeout fading out too fast

I am trying to get a paragraph tag to fade out over 10 seconds, however it is fading out much faster than the intended 10 seconds.

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>

<p>
    If you click on this paragraph you'll see it just fade away.
</p>
<script type="text/javascript">
    $("p").click(function () {
        $("p").fadeOut("10000");
    });
</script>
like image 743
Chris Levine Avatar asked Apr 30 '12 16:04

Chris Levine


1 Answers

Drop the quotes to make it work with milliseconds, otherwise it will just use the default value, as "10000" is a string and not a time value, and it's not an accepted string like "slow" or "fast".

$("p").click(function () {
    $("p").fadeOut(10000);
});

Also, I like to reference things within scope like this :

$("p").on('click', function () {
    $(this).fadeOut(10000);
});

FIDDLE

like image 70
adeneo Avatar answered Oct 06 '22 00:10

adeneo