|
Project Information
Featured
Downloads
Links
|
IntroductionSavvy.UI is an open source JavaScript UI Library powered by jQuery JavaScript Library mainly for it's robust DOM Manipulation Engine. Here's a example of Savvy.UI in action. Js.setup.widget.tab({
handler: "click"
});
var tab = new Js.widget.tab("#result");
tab.addTab({
id: "hello-world",
title: "Hello world",
closable: true,
content: "<p>Hello world</p>"
});Why jQuery?During the early iteration of Savvy.UI we developed and managed DOM Manipulation Engine but there are numbers of weakness and flaws. This had slow down the development of other modules in Savvy.UI which would be far useful if added to the library rather than sitting down and , so we decided to source out the selector engine and what ever else which already there in any opensource JavaScript Framework. jQuery is our #1 choice for these reason:
Is Savvy.UI a jQuery Plugin?No, Savvy.UI only utilized jQuery but at the same time we also maintain our own global namespace consisting of two; Js and Jrun. Requirement
Documentation
|