Pages

Friday, May 13, 2011

What is WebGL

HTML5 canvas by Javascript for 3D

Demo:
http://helloracer.com/webgl/

Web-based Graphics Library
http://en.wikipedia.org/wiki/WebGL

How to get the checked radio button by jQuery

$(':radio').change(function () {
       $(':radio:checked').each(function () {
            if ($(this).val() == 2) {
                //Do stuff
                return;
            }
        });
    });