On Aug 10, 7:19 pm, Cyril <dubus...@gmail.com> wrote:
> Is there any project about a website using pure jQuery for rendering
> the pages ?

It's funny you mention that, because i'm working on exactly that right
now: an application framework for writing apps in "pure JS", using
HTML only to get the JS and CSS loaded, and maybe set up the overall
layout using well-defined element IDs for various parts of the UI,
e.g. #ContentArea and #PageHeader. By "pure JS" i mean basically "pure
JS, but based around jQuery" (in fact i call it jqApp). i've got a
demo here:

http://wanderinghorse.net/computing/javascript/jquery/jqapp/demo.html

but it doesn't do all that much at the moment (or at least there's not
much to *see* at the moment). The most import part currently
implemented is a generic message-passing mechanism (demonstrated
above) for posting requests and getting responses using a well-defined
(but exceedingly simple) JSON grammar. The framework takes care of
most of the details, leaving the client to just populate the request
and fetch the payload from the response. The above link demonstrates
various message types, and gives a good idea of what direction i'm
planning on taking that.

Reply via email to