views:

75

answers:

2

How to create different patterns (like coverflow) in javascript? I don't want to use the already existing plugins provided by JQuery and other frameworks. I want to try developing from scratch. Any place where I can get documentation or tutorials to start with ?

A: 

I assume you mean you are looking to create your own Javascript framework. If so, try this page.

sdornan
Not exactly framework , a reusable javascript which takes html div objects as input and presents it in Nice UI format. That Nice UI format I will come up with my own . I need general guidelines If I plan to do such thing, how to go abt it ?And the link I guess It will help me understand the things better. Thanks for the link.
sat
A: 

http://www.learningjquery.com/2007/10/a-plugin-development-pattern

This article helped getting started with my first jquery plugin.

P.S.

Reading others code can help sometimes. Can be a great source of inspiration and motivation, too (because the the code you read is either so horrible or so shiny ...)

The MYYN