vote up 4 vote down star
3

I have some html/jquery that slides a div up and down to show/hide it, when a link is clicked:

<ul class="product-info">
  <li>
    <a href="#">YOU CLICK THIS TO SHOW/HIDE</a>
    <div class="toggle">
      <p>CONTENT TO SHOW/HIDE</p>
    </div>
  </li>
</ul>

and my jquery...

$('div.toggle').hide();
  $('ul.product-info li a').click(function(event){
    $(this).next('div').slideToggle(200);
  } 		
);

My question is: How do I use preventDefault() to stop the link acting as a link and adding # to the end of my URL & jumping to the top of the page? I can't figure out the right syntax, I just keep getting an error saying that preventDefault() is not a function.

flag

4 Answers

vote up 16 vote down check

Try something like

$('div.toggle').hide();
  $('ul.product-info li a').click(function(event){
    event.preventDefault();
    $(this).next('div').slideToggle(200);
  }             
);

Here is the page about that in the jQuery documentation:

http://docs.jquery.com/Events_(Guide)#event.preventDefault.28__.29

link|flag
vote up 1 vote down

Why not just do it in css?

Take out the 'href' attribute in your anchor tag

<ul class="product-info">
  <li>
    <a>YOU CLICK THIS TO SHOW/HIDE</a>
    <div class="toggle">
      <p>CONTENT TO SHOW/HIDE</p>
    </div>
  </li>
</ul>

In your css,

  a{
    cursor: pointer;
    }
link|flag
vote up 4 vote down

Alternatively, you could just return false from the click event:

 $('div.toggle').hide();
 $('ul.product-info li a').click(function(event){
  $(this).next('div').slideToggle(200);
+ return false; 
 });

Which would stop the A-Href being triggered.

Note however, for usability reasons, in an ideal world that href should still go somewhere, for the people whom want to open link in new tab ;)

link|flag
see my comment on the answer above, i ask where... – Pickledegg Nov 5 '08 at 16:43
yeah, i think i was answering what i thought your intent was instead of the question :) – Kent Fredric Nov 5 '08 at 17:28
vote up 0 vote down

You could change your <a> href attribute to "javascript: void(0);"

link|flag
1  
I prefer: "javascript:// description goes here" this way you can make a friendly label that appears in the status bar. – Diodeus Nov 5 '08 at 15:35
that's a good idea... maybe I'll have to adopt that :) – Eric Wendelin Nov 5 '08 at 15:57
1  
I loath both unless there is no alternative. Some sites drive me nuts when i middle click top open in a new tab and get a empty page with javascript in the URI :/ – Kent Fredric Nov 5 '08 at 15:59
Perhaps a link is unsuitable for this then? Maybe a Header tag would make more sense semantically? – Pickledegg Nov 5 '08 at 16:49
1  
"javascript:" shouldn't go in the href attribute. point it to a real resource, for those who don't have javavscript enabled. – Ben Scheirman Mar 8 at 17:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.