jQuery click slideUp not working

4.5k Views Asked by At
$("#front").click(function () {
    $(this).slideUp();
});

and

<div class="a" id="front">
    <div class="b">
        <h1>...</h1>
        <p>..........</p>
    </div>
</div>

Is there anything wrong with this code? Because it does not work properly.

3

There are 3 best solutions below

1
On BEST ANSWER
$(document).ready(function() {
  $("#front").click(function () {
    $(this).slideUp();
  });
});
1
On

What Chuck said.

$(document).ready(function() {
   $("#front").click(function () {
     $(this).slideUp();
  });
});

You can't bind a click on a div that might not exist yet <3

0
On

One thing that hasn't been mentioned is the callback function, it doesnt really apply here but for those of you who are having this issue and this doesnt solve it make sure you have nothing like a 'remove()' straight after. If you do, use:

$('#ele').slideUp(function(){
    $(this).remove();
});

Like I say, just in case :)