Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Right now I have:

$("#myElement").bind("buildTimeline", function (event, newViewObj) {
    curDomObj = $(this).children(".timeline"); //this refers to #myElement

    curDomObj.draggable({
        axis:"x",
        drag:curDomObj.trigger("drag")
    });
});

I'd much rather just have one chain, but is there a way to refer to the current element at your position in the chain?:

$(this).children(".timeline").draggable({
    axis:"x",
    drag:$(this).trigger("drag") //this still refers to #myElement, but I want
                                 //it to refer to #myElement .timeline
});
share|improve this question

1 Answer

up vote 0 down vote accepted

What about:

$("#myElement").bind("buildTimeline", function (event, newViewObj) {
    $(this).children(".timeline").draggable({
        axis:"x",
        drag:$(this).children(".timeline").trigger("drag")
    });
});
share|improve this answer
I'd like to avoid touching the dom (using $(this).children(".timeline") again) an extra time like this (not that I know if it even really does) – JustcallmeDrago Oct 26 '10 at 17:02
Well ultimately I think you have the best solution already, you'll probably have to get used to breaking the chain that way at times if you want to keep optimal performance. – Daniel Mendel Oct 26 '10 at 17:05
Alright, then. Thanks! – JustcallmeDrago Oct 26 '10 at 17:33

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.