Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript javascript help

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #38946
    cybershot
    Participant

    I am working on a site to get a div to slidetoggle up and down. It seems to be doing it. When I push the link, the div goes down and when I push it again, it goes up. Problem is that when I do push the link which is just an empty link with a class, the page jumps to the top. I need to prevent the default action of the link. I thought I could do it with e.prevendDefault() but that seems to disable the link all together and the div stops working. Do you know how to do this?















    #106217
    TheDoc
    Member

    Should work fine. Here’s a quick demo: http://codepen.io/ggilmore/pen/BGxKm

    Just have to make sure to put function(e) before using e.preventDefault().

    Also, not sure if this was the problem, but you misspelled ‘prevent’ in your post.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘JavaScript’ is closed to new topics and replies.