I’ve a page that access a web service.
The index page calls, onLoad, a webservice method to get a list of databases.
I want to display the results on a list of buttons, each containing a database name.
Using only html and jquery/js, what is the best way to dynamically create this page?
try jquery template, you can find it here : http://api.jquery.com/category/plugins/templates/
This is from that link:
I cant write a new answer because the question is closed so I decided write here if the you dont mind.
There are some parts on my webpage that are dynamically displayed.
For SAVING data I use:
For GETING and DISPLAYING I use
$('#'+file.id).html(responseText);I hope it helps!