Hi,
I have a use case here:
I have one main page with hundreds or even thousand of links. Each link will direct to a page with a form field called "summary". The user basically can input 1000 chars maximum summary for that page. The summary will be used on the main page: when the user hover the link, the summary will show up as a tooltip. The goal is: the user doesn't need to click into that page to know what that page is about.
Now, there may be a performance issues involved here. If there are hundreds or thousand of links on the main pages, there will be hundreds/thousand of "summary" associated with those links and when the main page load, it will take long time to load all the data. This surely need to be done in Ajax from which when the user hover one link, that one summary will be fetched and displayed asynchronously. But for the most efficient way, I am considering ajaxForm() plugin. I'm a front end UI designer and I have all the related "summary" related set up in the backend (java environemnt) and related jsp pages too. Is it best/easiest option to use ajaxForm () plugin? Or there is better way to do this? Does this plugin apply to all kinds of forms, esp. in java/jsp environment?
Thanks!