AJAX without a database

I don’t know anything about AJAx but I have this jquery widget that is loading slowing and I would like to only load content as it is view and not all at once.

Is is possible to incorporate AJAX to allow the widget to load parts of the content without having a database?

Thanks.

PS sorry for the bad spelling.

Yes. You could split the data into multiple files and then hava javascript request the correct, smaller file as it needs it. Like 1.html, 2.html, 3.html etc…You could also use a serverside programming language to split it up on the fly using more advanced criteria.

But, you will need some javascript programming experience to do this.