This challenge is intended to utilize the JavaScript language as a means of solving a problem. However, language-specific challenges are generally discouraged on CG.

learn more… | top users | synonyms

6
votes
3answers
293 views

Display a bézier curve in the browser

The goal is to display a bézier curve in any classical browser (except maybe old IE versions, because... are they really browsers?) client side. Rules: You must provide one or more files (or their ...
7
votes
2answers
165 views

Write the shortest text getter/setter on an element for the DOM

Just like jQuery's $.fn.text, write one or two functions that can get and set the text on an element. You can't use textContent or innerText, and even less innerHTML. Plain javascript. No DOM ...
-2
votes
1answer
92 views

IPv4 “in subnet” function [closed]

Implement the following JavaScript method as short as possible: function same_subnet(ip_a,ip_b,sn_mask) { } It should get 2 IP addresses and a subnet mask. It should return true if ip_a and ip_b ...
1
vote
7answers
336 views

Convert JSON string to Key / Value Arrays

Convert JSON (key/value pairs) to a native arrays of keys & values, in your language. var X = '{"a":"a","b":"b","c":"c","d":"d","e":"e","f":"f9","g":"g2","h":"h1"}'; The value array could be ...
2
votes
7answers
219 views

Implement String.prototype.toLowerCase()

Implement String.prototype.toLowerCase() Description The toLowerCase method returns the value of the string converted to lowercase. toLowerCase does not affect the value of the string itself. ...
11
votes
12answers
1k views

Javascript: Create a 10x10 array of 1s

Obviously this challenge would be trivial with separate functions and libraries, so they aren't allowed. Your code must conform to an ECMAscript specification (any spec will do), so no ...
-1
votes
2answers
208 views

Shortest code to check if a number is in a range in JavaScript

This is how I checkout to see if a number is in a range (in between two other numbers): var a = 10, b = 30, x = 15, y = 35; x < Math.max(a,b) && x > Math.min(a,b) // -> ...
-1
votes
4answers
367 views

Make an HTML page goto infinite loop?

Write a code using HTML, JavaScript, jQuery to make the page go into infinite loop. Restrictions: No looping or control structures of javascript and jQuery allowed. You can only use alert, events, ...
11
votes
25answers
3k views

Tips for golfing in JavaScript

What general tips do you have for golfing in JavaScript? I'm looking for ideas that can be applied to code golf problems in general that are at least somewhat specific to JavaScript (e.g. "remove ...
1
vote
2answers
687 views

Smallest Javascript CSS Selector Engine

Create a small acceptably efficient JS CSS selector engine. Standard css 2.0 properties should be supported in Firefox 3.0+,Safari , Opera, IE7+, and extra brownie points for IE6 support. Smallest ...
25
votes
2answers
2k views

What can you do in a 4k data URI?

Bounty is over, thephpdeveloper wins with Conway's Game of Life The web platform today is advancing at a rapid rate. Features like CSS3 animations, transforms, drop shadows and gradients, ...
6
votes
4answers
6k views

Shortest URL regex match in JavaScript

Create the shortest regular expression that will roughly match a URL in text when run in JavaScript Example: "some text exampley.com".match(/your regular expression goes here/); The regular ...