xan
xan

Reputation: 4696

fade out <a href> element

I'm trying to face a particular class .mosaic-block to fade on clicking this:

<a href="#">
  <div id="t0" class="n0 lfloat"><img src="images/home.png"><br>Home</div>
</a>

My Jquery code is:

<script type="text/javascript">
$(function () {
$('a #t0').click(function() {
  $(".mosaic-block").animate({ 
        opacity: 0.0
        }, 1500 );
    }); 
});
</script>

But I'm not getting the desired results.

EDIT#1 My .mosain-block HTML code:

<div class="mosaic-block bar">
    <h4>Sloppy Art</h4>
    <p>abcd</p>
</div>

Upvotes: 0

Views: 1118

Answers (2)

Denys S&#233;guret
Denys S&#233;guret

Reputation: 382504

Your code is fine.

You can see it in action here.

So the error is elsewhere. For example in the jQuery import (yes, I got a hint on this one ;) ) which could look like this :

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

Upvotes: 4

Sushanth --
Sushanth --

Reputation: 55750

Why not use the inbuilt fadeOut() method

$(".mosaic-block").fadeOut(1500);

Upvotes: 0

Related Questions