Mask
Mask

Reputation: 34207

How to carry out MVC in developing html/js/css?

Is it possible?

The ultimate goal I want to achieve is that:

When I want to add a new feature to a page,just do something like:

importhtml(html.file);
importcss(css.file);
importjs(js.file);

Upvotes: 0

Views: 71

Answers (1)

Dave
Dave

Reputation: 14188

If you are looking for an MVC framework which is all javascript driven, take a look at http://www.sproutcore.com/.

Upvotes: 1

Related Questions