Reputation: 525
I don't know what the below kind of frames are called. I guess they are not iframes as they don't show me the option to "Reload this frame" on making right click and I don't think that they are hidden DIV layers as layers will load data with direct page load. Can anybody tell me what the below kind of frames are called and how the information is loaded after clicking on its related button. Is that any javascript if so what's the keyword to google it?
Upvotes: 0
Views: 107
Reputation: 16210
Those aren't frames at all. Those are divs, held in place over the other elements using CSS. The content is loaded using AJAX. Read more about it here.
Upvotes: 1
Reputation: 944529
The techniques for loading additional data from the server without leaving the current page are collectively known as Ajax
Inserting content retrieved via Ajax into the document is done using DOM.
Upvotes: 1
Reputation: 644
They are just div elements from html. When you click the button the content is dynamicly loaded by AJAX. This could be raw AJAX or some library like jQuery.
So I guess you would google "AJAX load div content"
Upvotes: 4