Forums

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

Home Forums JavaScript Delay Issue

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28432
    thisishard
    Member

    Hi,
    I need someone to help me with this code,

    Code:
    $(‘a’, holder).hover(function() {
    selected.animate(
    {
    opacity : options.opacity,
    width : 200
    },
    {
    duration : options.speed,
    easing : options.easing,
    queue : false
    }
    );
    selected = $(this);
    $(this).animate(
    {
    opacity : 1,
    width : 360
    },
    {
    duration : options.speed,
    easing : options.easing,
    queue : false
    }
    );
    });

    I need, when the person hovers on the link, for it to wait a second, and then run the scripts.
    Thanks A Lot

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