I wish Jottit would have giving the ability for one to load some
Loading custom JavaScript libraries into the DOM
This will give the site-builder more control on the behavior and look of his/her site.
Here are few cases when it will be useful.
- Syntax highlighting.
- Add custom controls such as clickable elements.
Data Storage (Flat files (json/xml) or SQLite).
Not talking about media files (video, images, sound, etc.).
For those there are many free services available out there which can be mesh-up here easily.
I am talking about the ability to store data in text files or database and load them into a page using ajax. This approach will take most of the work away from the server side (jottit engine) and let the developers write their own communication and data transfer layer.
For example:
<script>
load_js('ajax.js', 'slider.js');
ajax_get('/categoties.xml', function(res){
res.each(
function(cat){
$('H3')[0].appendChild('<p>' + cat + '</p>')
}
);
});
</script>
changed January 9