Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have some function which is look like this:

var live_search_list = $('.live_search_list ul'),
    active_search_element = live_search_list.find('li.active'),
    search_element = live_search_list.find('li'),
    jsPane = $('.jspPane'); 

$('.bottom_search').click(function(){
    if (!search_element.last().hasClass('active')) {
        active_search_element.removeClass('active');
        active_search_element.next('li').addClass('active');
        jsPane.animate({top:"-=95px"});
    }
});
$('.top_search').click(function(){
    if (!search_element.first().hasClass('active')) {
        active_search_element.removeClass('active');
        active_search_element.prev('li').addClass('active');
        jsPane.animate({top:"+=95px"});
    }
});

So, problems starts after the first click, I have only one action - this with animation. After first click function is not checking my condition again, and not changing, removing class active. How can I restart this function after every click on this buttons?

share|improve this question
You want to stop() the animation? – epascarello Jan 14 at 13:45
I want to check my condition after every click, now after the first click everything is fine, but after it i have only animation action... – djlukas777 Jan 14 at 13:48
Are you sure that search_element and active_search_element are valid elements upon second and following clicks? +1 for what epascarello said - apart from anything - it's always good idea to stop() before starting animation again, otherwise, if user clicks several times in short intervals your animations will get queued and everything will be jumpy. – WTK Jan 14 at 13:58

2 Answers

up vote 1 down vote accepted

After you make the next li the active class you need to recache it in active_search_element

var live_search_list = $('.live_search_list ul'),
    active_search_element = live_search_list.find('li.active'),
    search_element = live_search_list.find('li'),
    jsPane = $('.jspPane'); 

$('.bottom_search').click(function(){
    if (!search_element.last().hasClass('active')) {
        active_search_element.removeClass('active');
        active_search_element.next('li').addClass('active');
        active_search_element = live_search_list.find('li.active')
        jsPane.animate({top:"-=95px"});
    }
});
$('.top_search').click(function(){
    if (!search_element.first().hasClass('active')) {
        active_search_element.removeClass('active');
        active_search_element.prev('li').addClass('active');
        active_search_element = live_search_list.find('li.active')
        jsPane.animate({top:"+=95px"});
    }
});
share|improve this answer
ofcourse, now active class append to second element and stay with it forever, much thx for help, BR – djlukas777 Jan 14 at 14:08

You are not setting active_search_element to the new active element!

The line:

active_search_element = live_search_list.find('li.active')

only selects the element at that time, it does not magically keep updating.

$('.bottom_search').click(function(){
    if (!search_element.last().hasClass('active')) {
        active_search_element.removeClass('active');
        active_search_element = active_search_element.next('li').addClass('active');
        jsPane.animate({top:"-=95px"});
    }
});

$('.top_search').click(function(){
    if (!search_element.first().hasClass('active')) {
        active_search_element.removeClass('active');
        active_search_element  = active_search_element.prev('li').addClass('active');
        jsPane.animate({top:"+=95px"});
    }
});
share|improve this answer
it works to, thx, i think also that is more flexible way for write it – djlukas777 Jan 14 at 14:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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