I have three DIV tags on my page each populated with
JSP.
A header DIV, detail DIV and list DIV.
The header displays a selected record name.
The detail holds detail data of the record selected.
The list is a table of a list of records.
When the page is initialy loaded the header shows a generic
string.
The deatil is empty.
The list is populated and the first column contains hyperlinks of record index.
When a hyperlink is clicked the detail gets loaded using $.load.
Then the header gets loaded using $.load.
This process gets slower the more records that are in the list.
What I think is happening is when the link is clicked:
the list reloads
the detail loads
the list reloads again
the header loads
the list reloads again
How can I keep the list DIV static and not be reloaded every time something on the page changes?