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 ...
11
votes
8answers
4k views
JavaScript Object Method Chaining: useful?
So... messing around in JavaScript with an idea that's new to me, having methods of an Object return the Object of which they are methods; this then leads to chainability. My question, then: how can ...
5
votes
4answers
1k views
JavaScript method chaining challenge
(This question is not really restricted to the language so please feel free to submit solution in other languages too.)
I was just wondering if it would be possible to write something like this in ...
4
votes
2answers
118 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
78 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
58 views
How do I use the same method when chaining over an object?
var string = function (base) {
return {
add: function (added) {
return base + added;
}
}
}
text = string("robots").add(" are awesome");
console.log(text);
// robots are awesome
...
3
votes
5answers
70 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 ...
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
169 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
2answers
171 views
MooTools Chaining
I don't think a function/method should ever return void—instead, it should return this. That's why I was surprised to find out that this doesn't work:
...
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>
...
1
vote
2answers
998 views
is there some dojo.fx.sleep function to use within a dojo.fx.chain animation?
I would like to fadeIn a node over one second. Then leave it on for 10 seconds. Then fadeOut for another 3 seconds. One way of chaining this would be as follows:
dojo.fx.chain([
...
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
1answer
180 views
Chaining asynchronous methods in JavaScript
I'd like to do something like this:
var res = myAjax.post();
myAjax is basically my own ajax wrapper (asynchroneous). I don't necessary need the chaining, but i'd like to be able to do the call ...
0
votes
2answers
2k views
How to attach an event to onSubmit event of form with chaining earlier attached methods as well?
Actaully my application is having hundreds of pages. Now i have to attach an event 'disablePage' on onSubmit of form. I don't want to go to each and every page and write:
<form name="frmname" ...
0
votes
3answers
1k views
Javascript Window.Onload Function Chaining
Just for the sake of experimentation, I've been trying to determine different ways to non-destructively chain window.onload functions in a web browser. This is the idea of what I have so far:
var ...