Looking to build a new feature-rich JavaScript app or registration page? These days websites are full applications that run in the browser, and you’ll need a solid foundation to build them on. In this article we’ll compare some of the most popular JavaScript frameworks and give some examples of sites that use them. React.js ReactRead More
Coding
LivePipe UI High-Quality Controls & Widgets for Prototype Programming
Introduction LivePipe UI is a suite of high quality widgets and controls for web 2.0 applications built using the Prototype JavaScript Framework. Each control is well tested, highly extensible, fully documented and degrades gracefully for non JavaScript enabled browsers where possible. MIT licensed and actively maintained.Event Oriented Programming introduces a mechanism to create and observeRead More
Event.Behavior Natural language event programming for Prototype
Introduction This library is inspired by Adam McCrea’s MetaProgramming Javascript Presentation. It is mainly an experiment in meta-programming, I intend to apply the research towards a more practical extension to Prototype at some point in the future. In Action with(Event.Behavior){ set_style(styles).on(paragraphs).when(selects).change(); } Size Color Weight Font By changing any of the select boxes above, the styles onRead More
IE Overlay Height
In IE, the height of the overlay is set to the view height. If you scroll the page then you can see that the overlay does not cover all of it. Solution: use the clientHeight instead. At line 792 of window.js, simply plug in document.body.clientHeight. This does the trick.Comments and changes to this ticket WithRead More