Archive for the ‘Prototype / Scriptaculous’ Category

Scriptaculous | Facebook-like Text Input | Multiselect With Autocompletion

Sunday, February 10th, 2008

http://www.interiders.com/2008/02/18/protomultiselect-02/

Protoculous - Prototype + Scriptaculous Compressed

Friday, February 8th, 2008

http://protoculous.wikeo.be/

Prototype - Keyboard Shortcuts

Sunday, October 28th, 2007
Event.observe(window, 'load', function() {

    Event.observe(document, 'keypress', function(e){

        var code;

        if (!e) var e = window.event;

        if (e.keyCode) code = e.keyCode;

        else if (e.which) code = e.which;

        var character = String.fromCharCode(code);

        alert('Character was ' + character);

    });

});