- ARCHIVE / Javascript
- Blink your link!
Ancient tags from the past in all honor, even how useless they are they can still bring some joy to todays modern web development.
Recently i found out that string in javascript contains a whole bunch of relatively unknown methods.
For example:"flirt".blink() // returns <blink>flirt</blink>
What the fuck, even tough its not very useful these days, its neat […]
- for (the_love in javascript){};
We all love javascript, right? We love it even more when other people explain it well. This is my little list of good online must-haves for any javascript programmer, no matter if you are a ninja or just learning. This is the good stuff.
All these resources are for you who already know your way around […] - James “Peppy” selectors
I have just finished reading through peppy.js , a “lightning fast CSS 3 compliant selector engine with no external library dependencies”, created by James Donaghue.
What i, really, like about this, is that other people competes with the ninjas and proves that you dont have to be named Resig, Edwards, Russel, Crockford, Diaz or Willison in […] - param();
I needed a function that took a parameter from the url, and returned its value.
With prototypes function toQueryParams() this was an rather easy task since toQueryParams() returns an object with key/value pairs. The only thing i had to do then is to ask for the value with the common [] with the key in. Short […] - Understanding the (function(){})();
Im always eager to learn modern, fresh ways of doing things with javascript. I read a lot of code and play a lot with it. However sometimes you see stuff that does’nt make sense to you since you’re not that 100% javascript ninja, yet!.
One of those things i have seen a lot all around the […]