Latest Download

Other Available Package

Build your custom Savvy.UI

Custom Builder

Feel lost?

Check out these instructions.

Working with Other Framework

By default, Savvy.UI is compatible with any other JavaScript Framework available in the market as we have been carefully code the library to based on a single Object, which is SUI. We made some mistake in the early iteration of the Library where we added Array.prototype feature which is considerably bad and made it incompatible with site powered with Prototype JavaScript Framework.

However, starting from version 0.1.1.7 no prototype extends were done for any of JavaScript Native Type to ensure the problem never repeat again. Therefore, previous function has been wrapped inside SUI.fn.

Dollar Sign Function

A numbers of JavaScript Framework out there love to use $(), Savvy.UI try not to do this as this may conflict with other library. IF however you are only using Savvy.UI, you can add $() functionality by adding this line:

<script type="text/javascript" src="/path/to/savvy.base.js"></script>
<script type="text/javascript">
var $ = SUI;
</script>

Precaution

Don’t create any variable name equal to SUI as this will override the whole object.