use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
詳しくは検索FAQを参照
高度な検索: 投稿者や、subredditで……
107 人のユーザーが現在閲覧しています
All about the JavaScript programming language.
Subreddit Guidelines
Frequently Asked Questions
Specifications:
Some useful resources:
Related Sub-Reddits:
/r/LearnJavascript
/r/remotejs
/r/webdev
/r/mobilewebdev
/r/frontend
/r/node+nodejs
/r/jquery
/r/webgl
/r/threejs
/r/coffeescript
/r/web_design
/r/html5
/r/html
/r/php
/r/forhire
/r/redditdev
/r/enhancement
Join us on IRC:
Webchat Clients
Is jQuery dying?help (self.javascript)
SomeRandomBuddy が 3日前 投稿
I didn't realize there was any negative jQuery sentiment around, but after doing some light reading, I can totally see why. Is jQuery's popularity fading? What are its preferred alternatives, and why?
[–]nerfviking 64ポイント65ポイント66ポイント 3日前 (3子コメント)
jQuery isn't going to go anywhere until businesses can realistically assume that the vast majority of their customers are on modern browsers. So it might be dying, but, much like Adobe Flash, it's going to be a slow death.
[–]leptons 1ポイント2ポイント3ポイント 3日前* (2子コメント)
jQuery gave up support for some legacy browsers, so its benefit isn't what it used to be. https://jquery.com/browser-support/
[–]blangjemp 22ポイント23ポイント24ポイント 3日前 (0子コメント)
But they're still maintaining the 1.* branch which continues support for older browsers
[–]waveform 2ポイント3ポイント4ポイント 3日前 (0子コメント)
jQuery gave up support for some legacy browsers
I wouldn't say that exactly - if you need to support those browsers, simply use the latest jQuery version which does.
[–]greim 56ポイント57ポイント58ポイント 3日前 (15子コメント)
Is jQuery dying?
As a resumé buzzword? Definitely. As a useful tool in your toolbox? Nah.
Some of the newer SPA frameworks reduce the need for jQuery since they handle DOM updates for you. I still use it in my React project, but only for reading from the DOM; never to mutate. For static websites, it's still quite useful and contemporary.
[–]reckonbeatsall 12ポイント13ポイント14ポイント 3日前 (7子コメント)
I still use it in my React project, but only for reading from the DOM;
Could you elaborate on why you use jQuery to read from the DOM when using React? Couldn't you use refs and findDOMNode instead?
findDOMNode
[–]greim 9ポイント10ポイント11ポイント 3日前 (5子コメント)
To be honest, there's no strong reason my app couldn't be de-jQuery-ified, other than the few days of effort it would cost. Plus jQuery has some nice helper methods like is() and closest() that I'd want to backfill.
is()
closest()
Ideally, someone would release a trimmed-down read-only subset of jQuery that dropped all the ajax, event handling and mutation stuff.
[–]Bummykins 11ポイント12ポイント13ポイント 3日前 (1子コメント)
jQuery released a subset of jQuery that drops whatever you want. You can build a version with whatever you want. And someone made a build builder http://projects.jga.me/jquery-builder/
[–]greim 2ポイント3ポイント4ポイント 3日前 (0子コメント)
I'll have to check into that again. Last time I looked, it didn't seem like mutation methods were a discreet "module" that you could drop from a custom build.
[–]fairfield 4ポイント5ポイント6ポイント 3日前 (2子コメント)
zepto.js comes pretty close to what you're describing.
[–]one800higginspizza delivery boy 1ポイント2ポイント3ポイント 3日前* (0子コメント)
Was going to suggest this. Judging by his comment, he could probably swap Zepto in place without any issues.
[–]greim 0ポイント1ポイント2ポイント 3日前* (0子コメント)
Isn't Zepto's goal to achieve parity with core jQuery functions? I.e. still has DOM mutation capabilities? Those are what I'd specifically want to get rid of.
[–]gregersriddare 2ポイント3ポイント4ポイント 3日前 (0子コメント)
He could. I'm just as curious as you.
[–]SomeRandomBuddy[S] 6ポイント7ポイント8ポイント 3日前 (0子コメント)
I think this is a well rounded and informative answer. Thanks
[–]nex_xen 0ポイント1ポイント2ポイント 2日前 (5子コメント)
With modern browsers, there is a school of thought which says jQuery is unnecessary: http://YouMightNotNeedjQuery.com
[–]greim 1ポイント2ポイント3ポイント 2日前 (0子コメント)
The subtext is that jQuery's mindshare position has evolved beyond a convenience function multi-tool, into a pseudo-platform in its own right. It protects you from the flaws of the underlying platform so well that it fosters ignorance of it, which has bred a whole generation of devs who don't understand the web.
Whether or not that's true, I still think that some sort of DOM convenience function multi-tool is a useful addition to a web developer's repertoire.
[–]jcampbelly 0ポイント1ポイント2ポイント 2日前 (3子コメント)
I look at some of the solutions posted, qualified by a conditional greater-than, based on IE versions, and with multiple nested branching conditionals, and my thoughts swing hard, with a thud, to: "this is precisely why I use jQuery."
When commodities (storage, memory, compute, power) are not unacceptably expensive, I consider jQuery to be a highly functional, thoroughly tested, documented solution to a class of problems that I would rather consider solved than attempt to reinvent. It's a valid solution to 90% of the work I need to get past to get to the actual problem a human being wants me to solve.
I agree that native javascript should absolutely be used where performance is critical (gaming, algorithms, etc). I agree that native javascript is best for libraries, where it's best to have no dependencies.
But for working with the DOM, AJAX, basic UI events, cross-browser behavior... thanks, but it's 2015 and I have bigger fish to fry.
[–]nex_xen 0ポイント1ポイント2ポイント 1日前 (2子コメント)
When you look at the page with IE10 set in the filter, you see how many things it's trivial to do without a library. If you need to support IE8, jQuery is probably the way to go, but if not, it might not be doing all that much for you.
[–]jcampbelly 0ポイント1ポイント2ポイント 1日前 (1子コメント)
Sure, the current generation of browsers is pretty good. That's a recent phenomenon, and a break in the clouds of a very old storm.
What strikes me is how compliant we have all become to IE's dominance of the pace of adoption in browser technology. It's the key decision we all must make when deciding on our technology because it's the lowest common denominator. That has always been the case. It's not getting better. Edge is not going to run on < Windows 10. Soon enough, we'll be back to limiting ourselves to the capabilities of legacy users running Windows 7 and IE 11. Microsoft is still consciously screwing over every web developer with that decision. It's unjustifiable and infuriating. Chrome and Firefox are better and have no problem crossing the OS boundary, even into Linux land. Clearly it's possible.
I decided a long time ago that the aggravation of that reality is something that I would gladly pay dearly to insulate myself from whenever possible. It's not that I haven't noticed or don't appreciate the progress of modern web browsers. It's that my time is better spent working on other problems than trying to backfill jQuery so I can feel better about myself.
[–]nex_xen 0ポイント1ポイント2ポイント 1日前 (0子コメント)
I have a completely different attitude. Many people (including myself) can build things which target IE10+, which is decently standards compliant. Recent versions of Windows auto-update IE, meaning it's close to being as evergreen as any other browser.
If you're worried about being locked in to IE11, take a look at CanIUse.com, IE11 supports many, many things most people don't use yet.
[–]MrStubbs 30ポイント31ポイント32ポイント 3日前 (4子コメント)
jQuery's popularity is waning because the DOM API's across browsers are getting better and more standardized. Powerful application frameworks like Backbone, Angular, Ember and React exist for building modern web applications, so for many teams it doesn't make sense to go with simple event driven DOM manipulation.
[–]spinlock 7ポイント8ポイント9ポイント 3日前 (3子コメント)
FYI - Ember uses jQuery. But, it is using it less and less. Currently, only views rely on jQuery so I could imagine jQuery going away in 2.0 (because views are going away in 2.0).
I feel like the way Ember needs jQuery less and less is a good microcosm for how js devs in general need jQuery less and less.
[–]jbarket 6ポイント7ポイント8ポイント 3日前 (0子コメント)
Similarly, Angular provides jqLite, which provides some of the most used functionality of jQuery.
[–]MrStubbs 6ポイント7ポイント8ポイント 3日前 (1子コメント)
I believe that backbone uses jquery too.
[–]my_ledge_ends 9ポイント10ポイント11ポイント 3日前 (0子コメント)
the only hard dependency with backbone is underscore. it does have built-in support for jquery, though
[–]oldboyFX 15ポイント16ポイント17ポイント 3日前 (2子コメント)
jQuery is fine. Becoming expert DOM manipulator in raw javascript won't make you a good programmer. Pure DOM manipulation is fairly trivial anyway, and jQuery is just a utility lib that makes the grunt work easier.
I see jQuery mainly as syntactic sugar and cross browser normalizing lib. It also does some clever behind the scenes grunt work such as removing data and event listeners from removed elements etc.
It's very useful depending on what kind of stack you're working with. I render everything serverside and then manipulate the dom manually, so jQuery provides lots of value for me. If I was working with something like React, there wouldn't be any reason to include it. As I said, dom manipulation is easy. It's like laying bricks at the construction site. Software architecture is the hard part.
Many developers are condescending to people who use jQuery. jQuery users are often seen as "lesser" developers. Ignore that. jQuery is just a tool, nothing more. It's also super popular and yes, most of the people who use it arent great developers. Just like most of the people who eat pizza aren't geniuses. That doesn't mean that everyone who eats pizza is a retard.
TL;DR - Get familiar with and try learning the native DOM api, but don't be afraid of using jQuery if it provides value for you, ignore the haters.
[–]untogethered 3ポイント4ポイント5ポイント 3日前 (0子コメント)
Developers who rely on jQuery are worse than ones who use raw DOM stuff, IMO.
Using it isn't really a problem, but it's important to have a concept of what's going on underneath if you want your code to run well.
[–]eorroe 0ポイント1ポイント2ポイント 2日前 (0子コメント)
I'd think you'd like NodeList.js over jQuery :)
jQuery
Since it uses the Native DOM APIs
[–]jbarket 15ポイント16ポイント17ポイント 3日前 (0子コメント)
It's not dying. It just doesn't fit into the current thinking that manually manipulating the DOM is bad. At it's core, it's a convenience layer for doing something that Angular, React, et cetera obfuscate away completely.
You'll see Bootstrap mentioned in a similar capacity these days, although not as frequently, as people begin to adopt CSS frameworks like Inuit, Susy, Bourbon, et cetera that leverage a different approach to providing the same kinds of features.
Neither one is dying, or even remotely close to going away. But if these trends continue, they'll continue to become less popular for new projects.
[–]parlezmoose 25ポイント26ポイント27ポイント 3日前 (55子コメント)
$.ajax is still useful
[–]theQuandary 28ポイント29ポイント30ポイント 3日前 (0子コメント)
Upcoming fetch API is on track to be standardized (and already has a polyfill)
https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
[–]maremp 7ポイント8ポイント9ポイント 3日前* (8子コメント)
One does not use whole jquery just to do ajax.
Edit: reference guide to replacing commonly used functions from jquery: You Might Not Need jQuery
[–]worldDev 23ポイント24ポイント25ポイント 3日前 (0子コメント)
My observations dictate most people use whole jquery for just one feature.
[–]x-skeww 2ポイント3ポイント4ポイント 3日前 (3子コメント)
Most websites which include jQuery only use a small subset of its features. But, to be fair, they might need some more in the future. E.g. when they add some new plugin to their CMS which comes with some JavaScript. The use jQuery as some sort of platform.
Also, XHR's API is probably one of the dumbest browser APIs. The Java/XML-like DOM APIs are already pretty horrible, but this one is on an entirely different level.
if (xhr.readyState === 4 && ...) {...}
Four. Of course. What else could it be?
Do you know why it's 0-4? It's because someone exposed enum values to a language which does not support enums. I'm certain the C++ code on the other side makes a lot more sense. On the JS side, however, we got those unnamed numerical constants which don't mean anything.
Thankfully, the Fetch API fixes this.
[–]maremp 1ポイント2ポイント3ポイント 2日前 (0子コメント)
I know, that's really stupid. At least that is the syntax in IE8 or earlier, IE9 fixes it to check request.status and IE10+ makes it this.status, which kind of screws it up for ES6 arrow function which binds this reference.
request.status
this.status
When reading this I was thinking of Fetch API, thanks for mentioning it. Although the polyfill currently supports only IE9+, which still sucks for some legacy projects.
[–]jad3d 0ポイント1ポイント2ポイント 2日前 (1子コメント)
Also it almost makes more to sense to include the whole thing as it's already cached on people's machines when you include it from a popular cdn.
[–]maremp 0ポイント1ポイント2ポイント 2日前 (0子コメント)
There is also a big chance that a library like Fetch API polyfill is already included. Great thing about Fetch is that it will be possible to just drop loading the polyfill in the future when it will be implemented in all common browsers.
[–]arathael -3ポイント-2ポイント-1ポイント 3日前 (2子コメント)
Am I a meme nazi to point out it is "One does not simply..."?
I don't want to be a dick, but come on.. we're grown ups here.
[–]xredxditx 3ポイント4ポイント5ポイント 2日前 (0子コメント)
Grown ups don't give a shit about memes
It wasn't meant to be from a meme.
One does not simply use whole jquery just to do ajax.
sounds stupid. If it were read as English, it would mean negative of simply, therefore it's hard. In this case, it's not hard to use jQuery for just ajax, it just isn't efficient since there are better and more lightweight solutions.
[–]MEAT_FIST 3ポイント4ポイント5ポイント 3日前 (4子コメント)
IMO superagent does a better job at what $.ajax would accomplish. It's pretty cool.
[–]throwawayphpizza 1ポイント2ポイント3ポイント 3日前 (3子コメント)
I recently started working with superagent and quickly moved over to axios because superagent doesn't support promises.
[–]kuenx 0ポイント1ポイント2ポイント 3日前 (0子コメント)
I've used request and superagent and have only recently come across axios. I've used it in a project and it's pretty cool.
request and superagent support Node.js streams though. Can be a big plus depending on what you want to do.
[–]MEAT_FIST 0ポイント1ポイント2ポイント 3日前 (1子コメント)
Can you elaborate on "doesn't support promises" ? I have used it many times with promises.
[–]throwawayphpizza 0ポイント1ポイント2ポイント 3日前 (0子コメント)
https://github.com/visionmedia/superagent/issues/722 https://github.com/visionmedia/superagent/pull/726#issuecomment-133078971
[–]BONER_PAROLE 1ポイント2ポイント3ポイント 3日前 (0子コメント)
https://github.com/radiosilence/xr
[–]danheartsjs 1ポイント2ポイント3ポイント 3日前 (0子コメント)
A plug for a friend that wrote more functionality to support REST using super agent. I present restwrapper! https://github.com/lyleg/restwrapper
[–]Ericth 1ポイント2ポイント3ポイント 3日前 (2子コメント)
What's wrong with xmlhttp though? No dependencies or anything. Granted the syntax is a bit uglier and if you wanna go promises then you'll have to do it yourself.
[–]parlezmoose 11ポイント12ポイント13ポイント 3日前 (1子コメント)
I always use promises. In 99% of projects jquery is there anyways so I might as well use it for ajax.
[–]Walter_Bishop_PhD 4ポイント5ポイント6ポイント 3日前 (0子コメント)
Plus $.ajax is going to be adapted to use a proper Promise API in the next version, so it'll be doubly handy imo:
http://blog.jquery.com/2014/10/29/jquery-3-0-the-next-generations/comment-page-2/#comment-550576
[–]10097338 1ポイント2ポイント3ポイント 3日前 (8子コメント)
There are a bunch of npm packages that accomplish the same thing without all the bulk of jquery. The most popular being request.
[–]mediumdeviationJavaScript Gardener 2ポイント3ポイント4ポイント 3日前 (7子コメント)
without the bulk of jQuery request
without the bulk of jQuery
request
lol
[–]kenman 5ポイント6ポイント7ポイント 3日前 (5子コメント)
Do you have any constructive criticism?
[–]itsananderson 1ポイント2ポイント3ポイント 3日前 (1子コメント)
It's a somewhat fair point. request, while an awesome library, is basically the kitchen sink of HTTP. I've definitely seen cases where people use it when http.get( would be nearly as simple.
http.get(
That said, Node has very different performance concerns, so a large library dependency isn't really a big deal.
[–]kenman 2ポイント3ポイント4ポイント 3日前 (0子コメント)
Yeah, I was just looking for more than "lol".
[–]mediumdeviationJavaScript Gardener 4ポイント5ポイント6ポイント 3日前* (1子コメント)
Only that if you want to recommend libraries to avoid the bulkiness of jQuery, than you should not recommend one that is several times larger than jQuery and is pretty much unusable on the client side, where jQuery is used.
Oh, and http://microjs.com/#Ajax
Much better! Thanks.
[–]x-skeww 1ポイント2ポイント3ポイント 3日前 (0子コメント)
I recommend to use this fetch polyfill:
https://github.com/github/fetch
The Fetch API is already natively supported by Firefox and Chrome.
[–]mattdesl 0ポイント1ポイント2ポイント 20時間前 (0子コメント)
Haha seriously. It's hundreds of kb after browserify + uglifyjs.
Just use 'xhr' module and move on. :)
[+]Havitech スコアが基準値未満のコメント-9ポイント-8ポイント-7ポイント 3日前* (25子コメント)
Anything jQuery does can (and in most modern applications, should) be done better by lodash and native Node methods.
Edit: Mfw when I'm working on enterprise front-end solutions using Node and npm, and getting downvoted into oblivion on /r/javascript for stating accurate information.
Everyone downvoting me, you have some major fundamental relearning of the methods and structure how JavaScript is being written and used in 2015. The real answer to OP's question is: yes, jQuerying is dying, for very very good reasons. Anyone not jumping on the Node-backed modular bandwagon is at severe risk of being left behind.
[–]pixartist 10ポイント11ポイント12ポイント 3日前 (9子コメント)
erm, node is serverside
[–]parpaythrums 6ポイント7ポイント8ポイント 3日前 (0子コメント)
Fetch is being implemented in browsers as well as node: https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API
[–]shigmy 5ポイント6ポイント7ポイント 3日前 (0子コメント)
There are packaging/build solutions that let you use Node modules in the browser.
A lot of folks who would have the opinion that modern apps should use native Node already have things like webpack or browserify pipelines in place.
[–]zshallbetter 5ポイント6ポイント7ポイント 3日前 (1子コメント)
This is completely true, but it's also inaccurate. Node can, and is often used, on the client side. I personally use it for module bundling, importing components and modules, emitting events, and downloading/installing packages. I know absolutely nothing about constructing serverside applications using it.
[–]pixartist 0ポイント1ポイント2ポイント 3日前 (0子コメント)
Didn't know that.
[–]Havitech 1ポイント2ポイント3ポイント 3日前 (2子コメント)
Anything available in node is available on front-end builds, you just have to use a bundler like browserify or webpack.
For native Node methods, you don't even need to npm install them, simply require/import them and browserify (and maybe webpack) will bring them in for you.
npm install
[–]ivosaurus 3ポイント4ポイント5ポイント 3日前 (1子コメント)
Except running serverside node, you know you're running on one JS engine, v8.
In a browser, you're using whatever the browser's JS is, and whatever ajax it implements. What's keeping node's API afloat & reliable across all browser engines?
[–]Havitech 2ポイント3ポイント4ポイント 3日前 (0子コメント)
You're totally correct, and this is why either jQuery or polyphils are used when legacy support is needed. It's not pretty, but no solution is when you're having support ancient relics like IE8.
But that doesn't disprove my point; using the right tool for the right job means not using jQuery unless you have a specific use case e.g., supporting old platforms, using a very light amount of DOM-manipulation such as on a Rails application, etc. These use cases (old browsers, monolithic Rails apps) are not where the web is tending anymore.
Just as IE8 etc. are dying, so too will these tools.
Also, Node wraps Chrome's internal JavaScript engine, so you can be confident in that much working. Firefox is of course also very robust, and even Microsoft has been behaving well the past few years.
[–]iwishiwasrelevant 1ポイント2ポイント3ポイント 3日前 (0子コメント)
You are behind if you think that what he mentioned in his comment is not applicable to the front-end.
There's no reason to use large kitchen sink libraries anymore when you have npm.
[–]parlezmoose 2ポイント3ポイント4ポイント 3日前 (1子コメント)
Interesting. Does node's 'http' module use the xmlhttprequest api in the browser? I use lodash in the client often but never considered using node http. I didn't think it would work.
[–]Havitech 3ポイント4ポイント5ポイント 3日前 (0子コメント)
Short answer: no.
Long answer: this guy explains it way better than I can.
I've personally had no problem using http browser-side in applications where I gave no fucks about older browsers. That said, fetch seems to be emerging as the preferred standard.
http
fetch
[–]tebriel 2ポイント3ポイント4ポイント 3日前 (10子コメント)
Yes, I've noticed there are a lot of people on reddit who think they know better than you. Dunning-Kruger in effect.
[+]Havitech スコアが基準値未満のコメント-6ポイント-5ポイント-4ポイント 3日前 (9子コメント)
I literally made that comment while taking a reddit break from replatforming a clientside application for a billion dollar+ company where we've deprecated jQuery and moved on to the tools I described.
But what the fuck do I know ¯\_(ツ)_/¯
[–]whompalicious 6ポイント7ポイント8ポイント 3日前 (6子コメント)
Your problem might be that you keep on saying that you do all these things for your job trying to set yourself up as an authority when that reasoning is a logical fallacy anyway.
Just explain why you have your opinion.
[–]Havitech 0ポイント1ポイント2ポイント 3日前 (5子コメント)
It is dishonest of you to accuse me of making an argument from authority when I've had sources linked right in the last paragraph of my initial comment. For fuck's sake, I linked to a talk called "JavaScript State of the Union 2015", given by Geoff Schmidt, a guy way smarter than me, you, or anyone else reading this. That was a good faith attempt to spread some knowledge and learning, and it's really disheartening to see people (developers, especially!) turn hostile towards ideas and information that conflict with their (totally wrong and incorrect) worldview.
The rest of my comments, including the job part, is me being incredulous at people here insisting (many through downvotes) that node and npm are serverside only. Browserify, one of a few tools that lets you use Node modules on the front end, had 2 million downloads in the last month, so excuse me if I'm a little dumbfounded that I'm sitting here like a fucking idiot having argue that the sky is, in fact, blue.
[–]whompalicious 5ポイント6ポイント7ポイント 3日前 (2子コメント)
Holy shit dude. I didn't downvote you. I was trying to say your shitty attitude might have something to do with the downvotes, since you seem so concerned about imaginary things.
[–]Havitech 1ポイント2ポイント3ポイント 3日前* (1子コメント)
I do apologize that I directed all that frustration at you, it was unintended.
But "imaginary things" is a bit of a cop out. Downvoting is generally regarded as an "I disagree" button. That a bunch of people felt that way towards me talking about the applications of Node on the front end, that's what has my head spinning. I posted informative links, and people just refuse to read and keep telling me I don't know what I'm talking about.
I'm not saying you're guilty of that. But there are more than a few other people here that are both stupid and confident, and that's a frustrating combination to deal with.
(not the guy you responded to)
I hear you, I was confused by your downvotes also.
No point in getting frustrated though, they'll figure it out eventually.
Personally, I don't know where all these people are working. All the job postings I see nowadays are Angular/Ember/React, and they all hype up their node/browserify/webpack toolchain. jQuery never even gets a mention.
Other than like, mom and pop Wordpress sites, no one is using jQuery as their starting point for building a site anymore.
[–]tebriel 1ポイント2ポイント3ポイント 2日前 (1子コメント)
You know, maybe just leave them in ignorance so people like us can rake in the money.
http://31.media.tumblr.com/a6487c623de001bfec9f8fbf88ce6648/tumblr_mlcjmyszR71qjeigjo1_500.gif
[–]Havitech 1ポイント2ポイント3ポイント 2日前 (0子コメント)
Haha, yes, their willful ignorance is our job security :)
[–]klien_knopper 1ポイント2ポイント3ポイント 3日前 (1子コメント)
Using jQuery implies a web based front end which is why it seems you have no idea what you're talking about.
[–]Havitech 1ポイント2ポイント3ポイント 3日前 (0子コメント)
Look, Node modules on the front end! 2 million downloads a month! Literally the first repo listed on npmjs.com. I don't know what I'm talking about??
[–]johnnyvibrant 4ポイント5ポイント6ポイント 3日前 (1子コメント)
In my opinion jQuery is just becoming more irrelevant, browsers are starting to actually become a little more standardised. Although Isnt this really the goal for jQuery, when it does becomes pointless to use then the developers who created it surely should be happy that their message has got across.
[–]jcampbelly 0ポイント1ポイント2ポイント 2日前* (0子コメント)
For about 10 years, jQuery has served many roles for all major browsers and platforms. jQuery is what it is today because of hard work of dedicated, intelligent people, but also because of the abject failures of the browsers ecosystem. Those roles may be successfully fulfilled by most popular browers and platforms natively within a few years with minimal subtle differences and fewer alien, masochistic, psychotic APIs. It will be a good day when jQuery's source code dwindles to a bunch of aliases to native, standardized APIs. When that happens, it will not be to the browser ecosystem's credit, but their great shame.
It should not be forgotten that the jQuery team stepped onto a scene populated by hostile pricks like IE, genius progressives like Firefox and Chrome (who came later), a smattering of esoteric, isolationist psychopaths like Safari, and a handful of capable, well-meaning but minority elements like Opera, and the other less well known factors. They looked at what all of them were claiming to do, said "this sucks," and made a much better interface that worked consistently for all of them, then gave it away for free.
[–]xjohnseanx 5ポイント6ポイント7ポイント 3日前 (3子コメント)
I think there is a general trend towards using a more declarative approach such as with React. Lots of imperative tools such as jQuery are harder to reason about and encourage you to manipulate the DOM directly. Functional programming and the flux architecture is a more controlled approach to making single page applications.
[+]tebriel スコアが基準値未満のコメント-7ポイント-6ポイント-5ポイント 3日前 (2子コメント)
Dojo was doing declarative like 8-9 years ago. React is a fad that will soon fade.
[–]Capaj 1ポイント2ポイント3ポイント 3日前 (1子コメント)
No. Please give me an example of how Dojo did declarative.
[–]tebriel 0ポイント1ポイント2ポイント 2日前 (0子コメント)
https://dojotoolkit.org/documentation/tutorials/1.10/declarative/
[–]temp4630985421 2ポイント3ポイント4ポイント 3日前 (1子コメント)
I believe it's becoming obsolete. Basically everything jQuery does falls into one of three categories: duplicating native functionality with bugs and cross-browser differences fixed, creating new APIs for bad native APIs, and implementing features not handled by native APIs. The first is becoming obsolete as browsers fix bugs and get on track with the standards, and the second as standards bodies incorporate ideas from jQuery into native features (document.querySelectorAll, Promise, fetch). For the third, most developers now prefer a modular approach, loading a single-purpose library for each feature they want rather than a larger library that also contains features they don't want. This shift in preference is no doubt aided by the first two trends, which have made it much easier to create a single-purpose library without first patching the ground you're standing on.
document.querySelectorAll
Promise
[–]bart2019 0ポイント1ポイント2ポイント 3日前 (0子コメント)
The latter is also possible using a plugin system, just as jQuery incorporates: rarely used features could be (should be) a plugin, which you only load into jQuery when you actually need it.
This reduces the chances of conflicting libraries.
Maybe that's just theory, and jQuery does contain too much bloat from the start. Maybe some stuff ought to be culled and put into a plugin.
[–]ikwaa 2ポイント3ポイント4ポイント 3日前 (8子コメント)
As a front end developer specifically what is a better alternative?
[–]xtremebuzz1 1ポイント2ポイント3ポイント 3日前 (6子コメント)
Right, I used to use angular, but once they dropped IE8 support and started moving to 2.x, I couldn't for business needs. If you need compatibility with IE8, I still don't know of a clear alternative.
[–]ikwaa 0ポイント1ポイント2ポイント 3日前 (1子コメント)
Yeah I mean my current job we need to support older browsers. I feel stuck in the past there -_- I'd be curious what I should start learning on my own time that would be more desirable at other companies that are gravitating away Jquery though
[–]Elminster_Aumar 0ポイント1ポイント2ポイント 3日前 (0子コメント)
Or...spend your own time finding an employer who pays for you to learn those things.
[–]gojukebox 0ポイント1ポイント2ポイント 2日前 (3子コメント)
Angular 1.2.x is maintained specifically for those that need IE8 support, for a little while at least.
[–]xtremebuzz1 0ポイント1ポイント2ポイント 2日前 (2子コメント)
Yup, aware of and using it. But I'd rather use jQuery with good design paterns than an old version of Angular.
[–]gojukebox 0ポイント1ポイント2ポイント 2日前 (1子コメント)
Those are waay different libraries for waay different purposes. Comparing angular to jQuery is like comparing a blueprint, instruction manual and team of special laborers to a toolbelt.
[–]xtremebuzz1 0ポイント1ポイント2ポイント 2日前 (0子コメント)
Good analogy. The blueprint and instruction manual, as you say, are definitely looser with jQuery, but there are established patterns that give you the same decoupling benefits of Angular 1.x.
The toolbox and laborers (are there, just as much as it they are there for backbone). You just have to put some thought into how you want to handle something angular abstracts for you (data binding for instance).
In the end jquery does far less for you out of the box than angular. But it also gives you more freedom (for better or worse). They are very different, butI wouldn't say they're use cases always differ that greatly.
[–]gojukebox 0ポイント1ポイント2ポイント 2日前 (0子コメント)
Use libraries specific for what you are trying to accomplish, rather than loading a "kitchen-sink" of methods only to use a few.
There are much smaller libraries specific to DOM manipulation, AJAX, etc, without being all-inclusive.
Also, most everything can be accomplished without a JS library.
[–]slyf 1ポイント2ポイント3ポイント 3日前* (0子コメント)
Is jQuery's popularity fading?
Yes, with the popularity of older IE going away and modern helpers existing right in the core then people are needing jquery less and less
What are its preferred alternatives
Plain old javascript http://youmightnotneedjquery.com/, but you can also use http://zeptojs.com/ if you like something minimal
One big thing I miss are the promises which IE does not support, but they can be polyfilled in various ways or a ton of folks are using Babel these days which has a nifty polyfill right there.
[–]_doingnumbers 1ポイント2ポイント3ポイント 3日前 (0子コメント)
I try not to use it at all these days, it's not as important as it used to be.
[–]hurkle 1ポイント2ポイント3ポイント 3日前 (0子コメント)
I'd also like to point out that for the hundreds of small / individual web agencies that crank out web sites for SMBs and NGOs and the like, jQuery is embedded deep into their toolboxes, whether they're doing WordPress/CMS stuff or just adding interactivity to a static site. Just slap me some jQuery in there and Bob's yer uncle.
However, for targeting unknown browsers, I often like to resort to vanilla JavaScript as a "substitute". Check caniuse.com to see how far down the browser support chain you can go and you'll be surprised at how far vanilla JS and good programming practices can take you.
With that said, for building SPAs, I'm all about the modern toolchains. But SPAs ain't websites, and jQuery will be around for a good while yet simply because of it's convenience (even if it's overkill).
Not according to Betteridge's law of headlines.
[–]sime_vidas 2ポイント3ポイント4ポイント 2日前 (0子コメント)
Since all browser vendors have agreed to replace their engines with one perfect browser engine that is completely bug-free, implements all the Web APIs perfectly, and will be installed on every single computer and mobile device in existence (mandated by a new global, inter-governmental law, which will be enforced on the entire human population), then yes, jQuery is indeed dying.
[–]achen2345 6ポイント7ポイント8ポイント 3日前 (11子コメント)
I suspect that jQuery became popular only because of querySelectors. The argument about solving cross-browser issues is a bunch of noise. There were a bunch of frameworks around before jQuery that did just this and had a much smaller API.
The bottom line is that (some) people are intimidated by the DOM and now querySelectors are available natively cross-browser back to IE9. jQuery is a victim of its own success and its dying as a result. It is on life support being sustained by a universe of jQuery plugins.
[–]fireball_jones 4ポイント5ポイント6ポイント 3日前 (7子コメント)
querySelectors and returning a jQuery object so you could chain other jquery functions on to it. Something like $().width().addClass() gets a bit more verbose in plain JS.
[–]bart2019 0ポイント1ポイント2ポイント 3日前 (1子コメント)
Don't forget that that snippet will never fail, let alone crash even if the DOM object you're after isn't found. That's a huge bonus of using jQuery.
[–]achen2345 0ポイント1ポイント2ポイント 2日前 (0子コメント)
Don't forget that that snippet will never fail
never is a very strong word. I have seen jQuery like this fail IE8.
[–]achen2345 0ポイント1ポイント2ポイント 2日前 (3子コメント)
That may be more convenient to write, but when I see code like that I can't help but think it just looks like you are trying to punish your users. Do you have any idea how much slower method chaining is compared to vanilla code? This stuff would absolutely choke IE8 which entirely defeats the point of using jQuery in the first place.
[–]akuma0 0ポイント1ポイント2ポイント 2日前 (1子コメント)
Actually, no, I don't. Are you saying that calling a method on a returned object is more expensive in a significant way than calling methods on an existing object, passing in the returned object?
In my experience with jQuery.... yes, absolutely. As far as method chaining outside of jQuery it completely depends upon the code, the depth, and the approach.
[–]edwinjm 0ポイント1ポイント2ポイント 2日前 (0子コメント)
No, it's not slower.
NodeList.js takes care of this with the Native DOM APIs
[–]jcampbelly 0ポイント1ポイント2ポイント 2日前 (2子コメント)
It was popular for a lot more reasons than selectors. Things have not always been so good for javascript as they have been in the past few years. In addition to selectors we got $.ajax (thank god), $.Deferred (before there were promises), $.on (delegation is awesome), $.data (before there was a standard), mouseenter/mouseleave events (because mouseover wasn't doing what people expected), chaining, and way more than I can list here.
Cross browser inconsistencies are hardly noise... see:
[–]achen2345 0ポイント1ポイント2ポイント 2日前 (1子コメント)
All of what you listed were popular and common in tools before jQuery became popular, so your list is not incredibly convincing.
[–]tobsn 5ポイント6ポイント7ポイント 3日前 (1子コメント)
No.
Next unfunded question.
[–]nex_xen 3ポイント4ポイント5ポイント 2日前 (0子コメント)
*unfounded
[–]dhdfdh 1ポイント2ポイント3ポイント 3日前 (38子コメント)
The native APIs in the browser are now to the point where you don't need jQuery to do the work for you so jQuery's usefulness to those who don't take the time to learn how things work has been diminishing for quite some time.
[–]nerfviking 1ポイント2ポイント3ポイント 3日前 (37子コメント)
Is using native APIs still a bunch of document.getElementByUngodlyLongFunctionName('whatever')?
I discovered jQuery 5 years ago and I've never gone back.
[–]achen2345 14ポイント15ポイント16ポイント 3日前 (5子コメント)
I don't need a 65k library to alias a long method name.
[–]x-skeww 1ポイント2ポイント3ポイント 3日前 (4子コメント)
https://mathiasbynens.be/demo/jquery-size
1.11.2 is about 33 KB (minified and gzipped).
Alright, I can play that game. According to that chart 1.11.2 is 284k of actual code you are punishing your users with. Code you don't need full of methods that get chained together like a prison chain-gang to make your browser crawl like syrup. Now I like jQuery even less.
[–]x-skeww 1ポイント2ポイント3ポイント 2日前 (2子コメント)
According to that chart 1.11.2 is 284k of actual code
That's the unminified version which is full of comments and long descriptive local identifiers.
It's 96 KB of code which is parsed and executed in the browser and it's 33 KB which is sent over the wire.
Modern JS engines are quite advanced. They will actually skip some work which they don't have to do. So, you don't really pay that much for functions which aren't used, because they aren't properly parsed and compiled until they are used.
You see, having some unused garbage lying around is a very common use case.
http://blog.chromium.org/2014/02/compiling-in-background-for-smoother.html
make your browser crawl like syrup
Reddit crawls like syrup? How about Stack Overflow and Wikipedia?
Reddit is slow on very long pages. Stack Overflow is slow too, but I blame advertising for that.
[–]x-skeww 0ポイント1ポイント2ポイント 2日前 (0子コメント)
Reddit is slow on very long pages.
Did you profile it? Did you try it without extensions?
I profiled this long page with Firefox, Chrome, and IE11. I didn't find any evidence that a significant amount of time is spent inside jQuery's code.
Can you show me a profile where jQuery is the culprit?
Well, there is fairly little time spent inside scripts to begin with. Secondly, it isn't slow for me. It takes about 2.5s to display the page and most of that is the server's response time.
[–]MrStubbs 2ポイント3ポイント4ポイント 3日前 (27子コメント)
you would use document.querySelectorAll() to get a similar behavoir to jquery selectors.
[–]alamandraxPrincipal Engineer/UI Architect 7ポイント8ポイント9ポイント 3日前 (10子コメント)
My main "problem" with document.querySelector... is the returned NodeList. I much prefer the jQuery wrapped result out of convenience more than anything else.
document.querySelector...
NodeList
[–]GeZe8 1ポイント2ポイント3ポイント 3日前 (0子コメント)
You could use the future query and queryAll methods which return an Elements collection, which is a subclass of Array.
query
queryAll
Elements
[–]gregersriddare 0ポイント1ポイント2ポイント 3日前 (7子コメント)
What's wrong with NodeList?
[–]alamandraxPrincipal Engineer/UI Architect 1ポイント2ポイント3ポイント 3日前 (1子コメント)
Like I said, there's nothing wrong with it. It's the convenience of the jQuery wrapped result. I'm most likely going to chain multiple operations together anyway, so it's convenient.
Check out NodeList.js I bet that's a wayyyy better NodeList?? :)
[–]tswaters 0ポイント1ポイント2ポイント 3日前 (4子コメント)
typeof NodeList.forEach; // undefined
Granted, there's a few ways around that and even more with es6
[–]LeBuddha 0ポイント1ポイント2ポイント 3日前 (0子コメント)
not inlined for readability, also not really trying to make a point about anything.
var forEach = Array.prototype.forEach; var nList = document.querySelectorAll('p'); var doFunction = function(currentValue,index,array) { console.log('doFunction!'); }; forEach.call(nList,doFuction);
[–]iwishiwasrelevant 0ポイント1ポイント2ポイント 3日前 (2子コメント)
function toArray() { return Array.prototype.slice.call( myNodeList ); }
Converting a nodeList to an array is very very easy, if you just need array like functionality. In ES7 you'll also be able to do Array.from() which will be even easier. No excuse there.
jQuery chaining IS convenient but generally speaking we're moving away from constantly mutating the dom directly. I personally find myself very very rarely doing so much manipulation that jQuery would be helpful.
[–]x-skeww 0ポイント1ポイント2ポイント 3日前 (1子コメント)
Array.from is from ES6. Also, you can use an array literal with spread (also ES6) to get the same effect:
[...document.querySelectorAll('.foo')].forEach(...)
By the way, DOM Level 4 will probably fix this problem. ES6 allows subclassing of arrays. The current plan is to make NodeList inherit those array methods.
Correction the new Elements collection, and here's a better NodeList
[–]edwinjm 0ポイント1ポイント2ポイント 2日前 (1子コメント)
Actually, to get something useful (and use forEach, filter etcetera), you have to write this:
Array.prototype.slice.call(document.querySelectorAll(query))
It's becoming a bit masochistic, isn't it?
NodeList.js takes care of that plus more
[–]nerfviking -2ポイント-1ポイント0ポイント 3日前 (9子コメント)
That's slightly better, since at least it's a single function. Still way too wordy for such a common operation, though.
And yes, I realize I can write my own function to do a shorthand version of it. :)
[–]recrof 1ポイント2ポイント3ポイント 3日前 (6子コメント)
https://jsperf.com/getelementbyid-vs-queryselector/28 might be interesting for everyone.
[–]nerfviking 0ポイント1ポイント2ポイント 3日前* (0子コメント)
So, on Firefox 40.0.2, it's about a sixth as fast as querySelectorAll() selecting by ID and half as fast selecting by class. So if I'm going to be doing a large volume of selects by IDm it's a lot better to use vanilla javascript, but I suspect for most use scenarios it doesn't matter very much. (And if I'm really concerned about speed, querySelectorAll() isn't a great choice either.)
[–]looeee 0ポイント1ポイント2ポイント 3日前* (0子コメント)
Its interesting, but all it really shows is that unless you are doing thousands of selections in your website then there will be no appreciable difference. Most use cases involve selecting a few elements and storing them as a variable (var foo = $(".foo") ), and if your case involves making tens of thousands of selections then you should probably not use jQuery.
For most people this is not a reason to avoid it though.
[–]cuddlyogre -1ポイント0ポイント1ポイント 3日前 (3子コメント)
Wow. I had no idea jquery was that much slower than raw javascript. Why is that?
[–]recrof 0ポイント1ポイント2ポイント 3日前 (2子コメント)
jQuery is written in javascript. getElementById/querySelector are native browser functions that are written in c++
[–]cuddlyogre 0ポイント1ポイント2ポイント 3日前 (1子コメント)
I'm aware of that but I just figured jquery selectors were wrappers for the raw JavaScript. Is that not the case?
[–]recrof 0ポイント1ポイント2ポイント 3日前 (0子コメント)
reading jQuery code will give you much more insight how complex it really is, even in modern browsers.
[–]hearwa -1ポイント0ポイント1ポイント 3日前 (1子コメント)
That's what intellisense is for.
[–]nerfviking 0ポイント1ポイント2ポイント 3日前 (0子コメント)
Or perhaps a precompiler. Intellisense may make it faster to write code, but it doesn't make your code more readable.
[–]brackin -1ポイント0ポイント1ポイント 3日前 (3子コメント)
how would i learn about all these newer javascript methods?
[–]the_argus 0ポイント1ポイント2ポイント 3日前 (1子コメント)
Have you tried reading the dox? https://developer.mozilla.org/en-US/docs/Web/JavaScript
[–]brackin 0ポイント1ポイント2ポイント 3日前 (0子コメント)
nope, ty.
[–]GeZe8 0ポイント1ポイント2ポイント 3日前 (0子コメント)
I made a jQuery docs type resource, for all the useful DOM functions: http://gkz.github.io/domdocs/
I'd check out NodeList.js then you won't need to go back
[+]dhdfdh スコアが基準値未満のコメント-9ポイント-8ポイント-7ポイント 3日前 (1子コメント)
That you have to ask the question proves my point about incompetence.
[–]nerfviking 2ポイント3ポイント4ポイント 3日前 (0子コメント)
I bet you're a hit at parties.
[–]SirHound 1ポイント2ポイント3ポイント 3日前 (2子コメント)
Until I see a good mouseleave/mouseenter alternative, I'll still use it for events.
[–]ppierre 7ポイント8ポイント9ポイント 3日前 (1子コメント)
https://developer.mozilla.org/en-US/docs/Web/Events/mouseenter
Not sure what you miss ?
[–]SirHound 3ポイント4ポイント5ポイント 3日前 (0子コメント)
Oh. Consider me learned! Thanks
[–]cheese_wizard 0ポイント1ポイント2ポイント 3日前 (0子コメント)
I think for really basic fixes here and there to gramma's flower shop site, a little jquery comes in handy. Say they already have some crazy ugly-minified plugin for their menus or something and they need a slight modification to it. Just slapping some document.ready with some DOM tweaks in there, maybe an ajax call or two. But don't build large apps with. I feel like it's a scripting language within a scripting language, and using typescript or something to build an angular app is going the other way.
[–]stephenhuh 1ポイント2ポイント3ポイント 2日前 (4子コメント)
jQuery was created so that you can "write less and do more" -- that is doing DOM manipulation without something like jQuery is truly a pain in the ass. jQuery isn't dying. I suspect that it'll only get more compact to fit into modern front-end frameworks like jqlite in angular.
[–]evilmaus 0ポイント1ポイント2ポイント 2日前 (0子コメント)
I imagine it hollowing out over time as browsers finally converge to the standards.
[–]eorroe 0ポイント1ポイント2ポイント 2日前 (2子コメント)
NodeList.js takes the pain in the ass out of the Native DOM APIs
[–]jdalton 0ポイント1ポイント2ポイント 1日前 (1子コメント)
It has no unit tests :/
[–]eorroe 0ポイント1ポイント2ポイント 1日前 (0子コメント)
Yea Ik, I really should make some, any ideas with what? and man there's so much to it, its gonna be some long tests.
[–]inf4my 0ポイント1ポイント2ポイント 2日前 (0子コメント)
jQuery is still used as a dependency in a lot of the frameworks that are now being utilized to build more ambitious web apps such as Ember (Angular can utilize it if available). It is still definitely a must know tool for modern web developers. Part of what is so appealing about using jQuery is they have spent years creating a compatibility layer for the DOM across multiple browsers. Most developers need to consider that web APIs don't always behave the same in Chrome, Firefox, IE, etc and across versions and jQuery has a lot of those cases handled for you.
My preferred alternative is my library NodeList.js because its super light, very very fast. (Even faster than plain JS, in some ways, I'll leave that up to you to figure out why :D) and if you use this library. You will never have to deal with upgrading, updating or deprecation by me.
My library uses the browser as a dependency meaning:
Whatever methods/properties the browser provides, my library has. I've seen a lot of smaller versions of jQuery but tbh their pretty useless because the only provide so much, that might as well just use jQuery. Now compare to my library whatever browsers decide on it will get. So basically the browser vendors are doing the work for you and I.
This is purely for DOM manipulation, so for ajax I'd use the fetch API
Nope. Storage, bandwidth, compute time, and battery life are commodities. Developer hours and project time-to-delivery are not. With one script tag, ~40KB of bandwidth, and a few milliseconds of compute time on any modern device at the leading edge of every page load, our project can be freed from writing, testing, documenting, and teaching 90% of the boilerplate functionality we need in any major web application.
That's a no-brainer to me and everybody else involved.
I haven't been persuaded by arguments against jQuery that involve:
None of those things matter enough to me, my project, my team, or my employer and I think that's true for a tremendously overwhelming percentage of people who consciously decide to use jQuery. Many of us really aren't in the business of ideological, philosophical, or platform purity, or simply writing javascript for the sake of writing javascript. Most of the time we're trying to make a tool to solve a problem other non-developer human beings have asked us to make, not just to satisfy our own selfish need for engineering perfection. How is it better for them if we decide to chose something different, not necessarily better, than jQuery? How is it better for them if we spend more of their time making something that is functionally identical?
[–]astoilkov 0ポイント1ポイント2ポイント 23時間前 (0子コメント)
I think the future is in things like this. A jQuery clone that does not have all the fixes but have almost all the API (in 250 lines of code).
[–]DJDarkViper 0ポイント1ポイント2ポイント 3日前 (1子コメント)
I try to exclusively use Angular these days my self
But then something comes along, and it's always some jquery plugin that requires jquery and it perfectly matches exactly what I want to accomplish and the no jquery alternatives miss the mark ever so slightly enough to not warrant the time involved in getting it that way.
Thankfully that's going away slowly.
I don't hate jquery, nor am I avoiding it because it's trendy to do. I'm just trying to keep my JS load as light as possible because the amount of script writing dedicated to just the angular controllers and directives and its various extensions and plugins and such is enough to make me nervous about browser performance :p
NodeList.js check it out, very light, and very powerful
[–]tebriel -1ポイント0ポイント1ポイント 3日前 (0子コメント)
One can hope.
π Rendered by PID 15617 on app-214 at 2015-08-24 08:01:29.808449+00:00 running ce2b5b1 country code: JP.
[–]nerfviking 64ポイント65ポイント66ポイント (3子コメント)
[–]leptons 1ポイント2ポイント3ポイント (2子コメント)
[–]blangjemp 22ポイント23ポイント24ポイント (0子コメント)
[–]waveform 2ポイント3ポイント4ポイント (0子コメント)
[–]greim 56ポイント57ポイント58ポイント (15子コメント)
[–]reckonbeatsall 12ポイント13ポイント14ポイント (7子コメント)
[–]greim 9ポイント10ポイント11ポイント (5子コメント)
[–]Bummykins 11ポイント12ポイント13ポイント (1子コメント)
[–]greim 2ポイント3ポイント4ポイント (0子コメント)
[–]fairfield 4ポイント5ポイント6ポイント (2子コメント)
[–]one800higginspizza delivery boy 1ポイント2ポイント3ポイント (0子コメント)
[–]greim 0ポイント1ポイント2ポイント (0子コメント)
[–]gregersriddare 2ポイント3ポイント4ポイント (0子コメント)
[–]SomeRandomBuddy[S] 6ポイント7ポイント8ポイント (0子コメント)
[–]nex_xen 0ポイント1ポイント2ポイント (5子コメント)
[–]greim 1ポイント2ポイント3ポイント (0子コメント)
[–]jcampbelly 0ポイント1ポイント2ポイント (3子コメント)
[–]nex_xen 0ポイント1ポイント2ポイント (2子コメント)
[–]jcampbelly 0ポイント1ポイント2ポイント (1子コメント)
[–]nex_xen 0ポイント1ポイント2ポイント (0子コメント)
[–]MrStubbs 30ポイント31ポイント32ポイント (4子コメント)
[–]spinlock 7ポイント8ポイント9ポイント (3子コメント)
[–]jbarket 6ポイント7ポイント8ポイント (0子コメント)
[–]MrStubbs 6ポイント7ポイント8ポイント (1子コメント)
[–]my_ledge_ends 9ポイント10ポイント11ポイント (0子コメント)
[–]oldboyFX 15ポイント16ポイント17ポイント (2子コメント)
[–]untogethered 3ポイント4ポイント5ポイント (0子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]jbarket 15ポイント16ポイント17ポイント (0子コメント)
[–]parlezmoose 25ポイント26ポイント27ポイント (55子コメント)
[–]theQuandary 28ポイント29ポイント30ポイント (0子コメント)
[–]maremp 7ポイント8ポイント9ポイント (8子コメント)
[–]worldDev 23ポイント24ポイント25ポイント (0子コメント)
[–]x-skeww 2ポイント3ポイント4ポイント (3子コメント)
[–]maremp 1ポイント2ポイント3ポイント (0子コメント)
[–]jad3d 0ポイント1ポイント2ポイント (1子コメント)
[–]maremp 0ポイント1ポイント2ポイント (0子コメント)
[–]arathael -3ポイント-2ポイント-1ポイント (2子コメント)
[–]xredxditx 3ポイント4ポイント5ポイント (0子コメント)
[–]maremp 0ポイント1ポイント2ポイント (0子コメント)
[–]MEAT_FIST 3ポイント4ポイント5ポイント (4子コメント)
[–]throwawayphpizza 1ポイント2ポイント3ポイント (3子コメント)
[–]kuenx 0ポイント1ポイント2ポイント (0子コメント)
[–]MEAT_FIST 0ポイント1ポイント2ポイント (1子コメント)
[–]throwawayphpizza 0ポイント1ポイント2ポイント (0子コメント)
[–]BONER_PAROLE 1ポイント2ポイント3ポイント (0子コメント)
[–]danheartsjs 1ポイント2ポイント3ポイント (0子コメント)
[–]Ericth 1ポイント2ポイント3ポイント (2子コメント)
[–]parlezmoose 11ポイント12ポイント13ポイント (1子コメント)
[–]Walter_Bishop_PhD 4ポイント5ポイント6ポイント (0子コメント)
[–]10097338 1ポイント2ポイント3ポイント (8子コメント)
[–]mediumdeviationJavaScript Gardener 2ポイント3ポイント4ポイント (7子コメント)
[–]kenman 5ポイント6ポイント7ポイント (5子コメント)
[–]itsananderson 1ポイント2ポイント3ポイント (1子コメント)
[–]kenman 2ポイント3ポイント4ポイント (0子コメント)
[–]mediumdeviationJavaScript Gardener 4ポイント5ポイント6ポイント (1子コメント)
[–]kenman 2ポイント3ポイント4ポイント (0子コメント)
[–]x-skeww 1ポイント2ポイント3ポイント (0子コメント)
[–]mattdesl 0ポイント1ポイント2ポイント (0子コメント)
[+]Havitech スコアが基準値未満のコメント-9ポイント-8ポイント-7ポイント (25子コメント)
[–]pixartist 10ポイント11ポイント12ポイント (9子コメント)
[–]parpaythrums 6ポイント7ポイント8ポイント (0子コメント)
[–]shigmy 5ポイント6ポイント7ポイント (0子コメント)
[–]zshallbetter 5ポイント6ポイント7ポイント (1子コメント)
[–]pixartist 0ポイント1ポイント2ポイント (0子コメント)
[–]Havitech 1ポイント2ポイント3ポイント (2子コメント)
[–]ivosaurus 3ポイント4ポイント5ポイント (1子コメント)
[–]Havitech 2ポイント3ポイント4ポイント (0子コメント)
[–]iwishiwasrelevant 1ポイント2ポイント3ポイント (0子コメント)
[–]parlezmoose 2ポイント3ポイント4ポイント (1子コメント)
[–]Havitech 3ポイント4ポイント5ポイント (0子コメント)
[–]tebriel 2ポイント3ポイント4ポイント (10子コメント)
[+]Havitech スコアが基準値未満のコメント-6ポイント-5ポイント-4ポイント (9子コメント)
[–]whompalicious 6ポイント7ポイント8ポイント (6子コメント)
[–]Havitech 0ポイント1ポイント2ポイント (5子コメント)
[–]whompalicious 5ポイント6ポイント7ポイント (2子コメント)
[–]Havitech 1ポイント2ポイント3ポイント (1子コメント)
[–]iwishiwasrelevant 1ポイント2ポイント3ポイント (0子コメント)
[–]tebriel 1ポイント2ポイント3ポイント (1子コメント)
[–]Havitech 1ポイント2ポイント3ポイント (0子コメント)
[–]klien_knopper 1ポイント2ポイント3ポイント (1子コメント)
[–]Havitech 1ポイント2ポイント3ポイント (0子コメント)
[–]johnnyvibrant 4ポイント5ポイント6ポイント (1子コメント)
[–]jcampbelly 0ポイント1ポイント2ポイント (0子コメント)
[–]xjohnseanx 5ポイント6ポイント7ポイント (3子コメント)
[+]tebriel スコアが基準値未満のコメント-7ポイント-6ポイント-5ポイント (2子コメント)
[–]Capaj 1ポイント2ポイント3ポイント (1子コメント)
[–]tebriel 0ポイント1ポイント2ポイント (0子コメント)
[–]temp4630985421 2ポイント3ポイント4ポイント (1子コメント)
[–]bart2019 0ポイント1ポイント2ポイント (0子コメント)
[–]ikwaa 2ポイント3ポイント4ポイント (8子コメント)
[–]xtremebuzz1 1ポイント2ポイント3ポイント (6子コメント)
[–]ikwaa 0ポイント1ポイント2ポイント (1子コメント)
[–]Elminster_Aumar 0ポイント1ポイント2ポイント (0子コメント)
[–]gojukebox 0ポイント1ポイント2ポイント (3子コメント)
[–]xtremebuzz1 0ポイント1ポイント2ポイント (2子コメント)
[–]gojukebox 0ポイント1ポイント2ポイント (1子コメント)
[–]xtremebuzz1 0ポイント1ポイント2ポイント (0子コメント)
[–]gojukebox 0ポイント1ポイント2ポイント (0子コメント)
[–]slyf 1ポイント2ポイント3ポイント (0子コメント)
[–]_doingnumbers 1ポイント2ポイント3ポイント (0子コメント)
[–]hurkle 1ポイント2ポイント3ポイント (0子コメント)
[–]waveform 2ポイント3ポイント4ポイント (0子コメント)
[–]sime_vidas 2ポイント3ポイント4ポイント (0子コメント)
[–]achen2345 6ポイント7ポイント8ポイント (11子コメント)
[–]fireball_jones 4ポイント5ポイント6ポイント (7子コメント)
[–]bart2019 0ポイント1ポイント2ポイント (1子コメント)
[–]achen2345 0ポイント1ポイント2ポイント (0子コメント)
[–]achen2345 0ポイント1ポイント2ポイント (3子コメント)
[–]akuma0 0ポイント1ポイント2ポイント (1子コメント)
[–]achen2345 0ポイント1ポイント2ポイント (0子コメント)
[–]edwinjm 0ポイント1ポイント2ポイント (0子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]jcampbelly 0ポイント1ポイント2ポイント (2子コメント)
[–]achen2345 0ポイント1ポイント2ポイント (1子コメント)
[–]tobsn 5ポイント6ポイント7ポイント (1子コメント)
[–]nex_xen 3ポイント4ポイント5ポイント (0子コメント)
[–]dhdfdh 1ポイント2ポイント3ポイント (38子コメント)
[–]nerfviking 1ポイント2ポイント3ポイント (37子コメント)
[–]achen2345 14ポイント15ポイント16ポイント (5子コメント)
[–]x-skeww 1ポイント2ポイント3ポイント (4子コメント)
[–]achen2345 0ポイント1ポイント2ポイント (3子コメント)
[–]x-skeww 1ポイント2ポイント3ポイント (2子コメント)
[–]achen2345 0ポイント1ポイント2ポイント (1子コメント)
[–]x-skeww 0ポイント1ポイント2ポイント (0子コメント)
[–]MrStubbs 2ポイント3ポイント4ポイント (27子コメント)
[–]alamandraxPrincipal Engineer/UI Architect 7ポイント8ポイント9ポイント (10子コメント)
[–]GeZe8 1ポイント2ポイント3ポイント (0子コメント)
[–]gregersriddare 0ポイント1ポイント2ポイント (7子コメント)
[–]alamandraxPrincipal Engineer/UI Architect 1ポイント2ポイント3ポイント (1子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]tswaters 0ポイント1ポイント2ポイント (4子コメント)
[–]LeBuddha 0ポイント1ポイント2ポイント (0子コメント)
[–]iwishiwasrelevant 0ポイント1ポイント2ポイント (2子コメント)
[–]x-skeww 0ポイント1ポイント2ポイント (1子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]edwinjm 0ポイント1ポイント2ポイント (1子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]nerfviking -2ポイント-1ポイント0ポイント (9子コメント)
[–]recrof 1ポイント2ポイント3ポイント (6子コメント)
[–]nerfviking 0ポイント1ポイント2ポイント (0子コメント)
[–]looeee 0ポイント1ポイント2ポイント (0子コメント)
[–]cuddlyogre -1ポイント0ポイント1ポイント (3子コメント)
[–]recrof 0ポイント1ポイント2ポイント (2子コメント)
[–]cuddlyogre 0ポイント1ポイント2ポイント (1子コメント)
[–]recrof 0ポイント1ポイント2ポイント (0子コメント)
[–]hearwa -1ポイント0ポイント1ポイント (1子コメント)
[–]nerfviking 0ポイント1ポイント2ポイント (0子コメント)
[–]brackin -1ポイント0ポイント1ポイント (3子コメント)
[–]the_argus 0ポイント1ポイント2ポイント (1子コメント)
[–]brackin 0ポイント1ポイント2ポイント (0子コメント)
[–]GeZe8 0ポイント1ポイント2ポイント (0子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[+]dhdfdh スコアが基準値未満のコメント-9ポイント-8ポイント-7ポイント (1子コメント)
[–]nerfviking 2ポイント3ポイント4ポイント (0子コメント)
[–]SirHound 1ポイント2ポイント3ポイント (2子コメント)
[–]ppierre 7ポイント8ポイント9ポイント (1子コメント)
[–]SirHound 3ポイント4ポイント5ポイント (0子コメント)
[–]cheese_wizard 0ポイント1ポイント2ポイント (0子コメント)
[–]stephenhuh 1ポイント2ポイント3ポイント (4子コメント)
[–]evilmaus 0ポイント1ポイント2ポイント (0子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (2子コメント)
[–]jdalton 0ポイント1ポイント2ポイント (1子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]inf4my 0ポイント1ポイント2ポイント (0子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]jcampbelly 0ポイント1ポイント2ポイント (0子コメント)
[–]astoilkov 0ポイント1ポイント2ポイント (0子コメント)
[–]DJDarkViper 0ポイント1ポイント2ポイント (1子コメント)
[–]eorroe 0ポイント1ポイント2ポイント (0子コメント)
[–]tebriel -1ポイント0ポイント1ポイント (0子コメント)