Tagged Questions

11
votes
3answers
14k views

Chaining selectors in jQuery

I'm a guy used to mootools' way of chaining selectors, and I can't seem to find anywhere how to do the same in jQuery. Suppose I have a select element in the selectObj variable. What I need is to get ...
4
votes
2answers
119 views

Javascript method chain

I have been trying to find a way to chain these methods together in a similar way to jQuery. here is an example of what I mean: (function() { window.foo = function foo( id ) { if( window ...
3
votes
5answers
79 views

jQuery: if inside a chain?

I have this if(noDelay){ $(element).find("." + options.class).remove(); } else { $(element).find("." + options.class).fadeOut().remove(); } Is there a way I could avoid repeating the sentence ...
3
votes
5answers
71 views

How can I chain my method calls?

I have an object: var mubsisapi = { step1 : function(){alert("a")}, step2 : function(){alert("b")} } $.extend(false, mubsisapi) mubsisapi.step1().step2(); It is give ...
2
votes
2answers
86 views

Does chaining in jQuery work with manipulation and effect methods?

I'm trying to do the following method chain: $(somehtml).insertAfter("#someelement").fadeIn('slow'); What I would like to happen is for the somehtml to be added but with the fadeIn effect. ...
2
votes
3answers
440 views

Is jQuery method chaining an example of fluent programming?

I'm somewhat new to JavaScript/jQuery, but when I saw examples of method chaining it struck me as instantly familiar. Other interfaces like LINQ do something similar where the return type of a set of ...
2
votes
3answers
380 views

Has jQuery taken a backwards approach to method chaining?

Is it just me who find the following code intrinsically backwards? I am using this posting as a reference. // create the inner div var $inner = $("<div>inner</div>") // append it to ...
1
vote
3answers
73 views

Why is my 'this' not changing context inside inner jQuery each loop?

The idea is that I want to loop through these objects and build an HTML structure which will be added to the page. I thought it would be cleaner to do it all in the chain, but apparently I'm not ...
1
vote
1answer
173 views

delay is not a function

I keep getting an error like this: $("div.valid_box").html(data.message).css("margin-left", "145px").css("width", "520px").show().delay is not a function [Break On This Error] ...
1
vote
3answers
173 views

How do chained functions get executed in JQuery?

When a function is chained in JQuery, what is the order of operations? Example 1 $(selector).fun1(val,{fun2(){ }} Example 2 $(selecter).fun1().fun2().fun3()
1
vote
7answers
1k views

What determines the execution order of methods in jQuery chains?

HTML Code <div id="foo"> <h1>foo</h1> <p>Pellentesque habitant morbi tristique.</p> </div> <div id="bar"> <h1>bar</h1> </div> ...
0
votes
2answers
34 views

Create a new jquery chained method

How do you write new chained methods in jQuery? I have a very procedural style in my jQuery: $("#SaveButton").click(function () { Foo($("#SubTotal")); Foo($("#TaxTotal")); ...
0
votes
2answers
68 views

display 'loading' at the beginning of a function not working/happens too fast

I have this expression: $('#animationNext,#animationPrev').bind('mousedown',function(){ $('.nInfoIE').show(); $('ul.roundabout-holder ...
0
votes
3answers
82 views

Chaining in Javascript without setting state

I like jQuery's ability to method chain commands ( .animate().css() etc ) which in the backend is achieved by returning the special variable "this". How can I implement a similar method of chaining ...
0
votes
2answers
589 views

Having two $.ajax() calls in one script

I want to show some progress information of a server side procedure (which in fact is an ffmpeg re-encoding). The best way I though of was to use two different $.ajax() calls on myscript like this: ...