I'm writing a little webapp for mobile.
There is a form asking for a particular item and its details, users should be able to insert one or more items with their details.
If it was a normal webapp I'd use ajax with a link "add one" just like gmail does for attachments. On mobile I think it's not a good idea using ajax, so I used "i'm done" and "add more" button which load a new page and the rest of the list is saved server side. This means that for each new item a user need to reload the page, it is slow and it may costs more to my users. Is there a better way to do this?