Skip to main content
CSS-Tricks
  • Articles
  • Notes
  • Links
  • Guides
  • Almanac
  • Picks
  • Shuffle
Search

Articles Tagged
JavaScript

160 Articles
{
,

}
Direct link to the article Cooperative Scheduling with `requestIdleCallback`
JavaScript performance

Cooperative Scheduling with `requestIdleCallback`

Potch:

If you absolutely must perform tasks on the main thread (mutating the DOM or interacting with main-thread-only Web APIs), you can now request the browser provide you with a window of time in which it is safe to do

…
Chris Coyier on Nov 8, 2016
Direct link to the article Is jQuery Still Relevant?
JavaScript jQuery

Is jQuery Still Relevant?

It took a minute, but I believe we have arrived at Baby Bear on the jQuery conversation. Some choice quotes from the ensemble cast blog post:

Nathanael Anderson: The biggest negative for jQuery in this day and age is that

…
Chris Coyier on Oct 13, 2016
Direct link to the article How It Feels Reactions
JavaScript learning

How It Feels Reactions

Jose Aguinaga pinched a community nerve:

The JavaScript community is insane if it thinks anyone can keep up with this.

I heard a lot of Hilarious! So true! reactions. I heard a lot of Nope. This isn’t what it’s like.…

Chris Coyier on Oct 7, 2016 Updated on Oct 8, 2016
Direct link to the article Template Literals
es2015 es6 JavaScript strings template literal

Template Literals

The Template Literal, introduced in ES6, is a new way to create a string. With it comes new features that allow us more control over dynamic strings in our programs. Gone will be the days of long string concatenation!

To …

Ryan Christiani on Sep 29, 2016
Direct link to the article Loading Polyfills Only When Needed
JavaScript polyfill

Loading Polyfills Only When Needed

We had this question on ShopTalk just the other day. We’re so (rightfully) worried about web performance, it feels like we shouldn’t be loading polyfills all the time, only when we detect they are needed. Philip Walton:

… too many

…
Chris Coyier on Sep 29, 2016
Direct link to the article Transpiling ES6
babel es2015 es6 gulp JavaScript

Transpiling ES6

While support for ES6 is always increasing, we can’t always assume that users will be using a browser that supports all its features. So, in order to utilize ES6 features now and make sure we won’t run into cross-browser compatibility …

Ryan Christiani on Sep 13, 2016
Direct link to the article Babel Plugin to Add Function Names
babel es6 JavaScript

Babel Plugin to Add Function Names

Have you ever been working with those sweet new ES6 arrow functions, run into a problem, and noticed that now your stack trace is all anonymous functions? Yeah, that’s not so great. That’s why this Babel plugin is so useful. …

Sarah Drasner on Aug 29, 2016
Direct link to the article What the heck is the event loop anyway?
event loop JavaScript

What the heck is the event loop anyway?

In 2014, Philip Roberts gave a great talk at JSConf EU, walking through the event loop and breaking down what JavaScript is doing under the hood for those of us without CS degrees. I came across this talk the other …

Sarah Drasner on Aug 24, 2016
Direct link to the article Staggering Animations
animation isotope JavaScript stagger

Staggering Animations

The following is a guest post by David DeSandro. David wanted to offer a new feature in Isotope: staggered animations. Like so many things web, there are lots of ways he could have approached it. Here he looks …

David DeSandro on Aug 16, 2016 Updated on Apr 10, 2017
  • Newer
  • 1
  • ...
  • 15
  • 16
  • 17
  • ...
  • 18
  • Older

CSS-Tricks is powered by DigitalOcean.

Keep up to date on web dev

with our hand-crafted newsletter

DigitalOcean
  • About DO
  • Cloudways
  • Legal stuff
  • Get free credit!
CSS-Tricks
  • Contact
  • Write for CSS-Tricks!
  • Advertise with us
Social
  • RSS Feeds
  • CodePen
  • Mastodon
  • Bluesky
Back to Top