Category Archives: Prototype / Scriptaculous

Scriptaculous | Facebook-like Text Input | Multiselect With Autocompletion

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

Posted in Prototype / Scriptaculous | Leave a comment

Protoculous – Prototype + Scriptaculous Compressed

http://protoculous.wikeo.be/

Posted in Prototype / Scriptaculous | Leave a comment

Prototype – Keyboard Shortcuts

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); }); });

Posted in Prototype / Scriptaculous | Leave a comment