ScrollTo – A Plugin for jQuery
This nice plugin for jQuery allows you to scroll horizontally or vertically to a position specified as: a raw number a string(‘44’, ‘100px’, ‘+=30px’, etc ) a DOM element (logically, child of the scrollable element) a selector, that will be relative to the scrollable element The string ‘max’ to scroll to the end. a string […]
Responsive Web Design by Ethan Marcotte
Responsive web design relies upon CSS media queries, fluid layout and JavaScript to create a web design layout that responds to the size of the window the page is presented in. This is the article by Ethan Marcotte on A List Apart that started the movement. Link: Responsive Web Design on A List Apart
Zebra_Form – Easily create and validate HTML forms
Zebra_Form is a PHP class that simplifies the process of creating and validating HTML forms. Its object-oriented structure promotes rapid HTML forms development and encourages developers to write clean and easily maintainable code. It frees the developers from the repetitive task of writing the code for validating forms by offering powerful built-in client-side and server-side […]
CoffeeScript is a simple, easy-to-use language for web developers that compiles easily into JavaScript
CoffeeScript is a simple, easy-to-use language for web developers that makes working with JavaScript fun again. The golden rule of CoffeeScript is: “It’s just JavaScript”. The code compiles one-to-one into the equivalent JS, and there is no interpretation at runtime. You can use any existing JavaScript library seamlessly from CoffeeScript (and vice-versa). The compiled output […]
CoreJS: A Web Application Framework for NodeJS Written in CoffeeScript
CoreJS is an Open Source Web Application Framework, using the MVC Architecture written in CoffeeScript, allowing you to create Powerful Web Applications with ease, keeping your code clean & readable. Using an Object Oriented workflow, you can create, extend and reuse classes to be used within your applications. You can configure several environments for your […]