I am writing a complex tab based web application where each tab is unrelated to each other in the sense that there is no interaction. So for ease of development i want I want each tab to be a separate html page viewable on its own and at later stage I can assemble them via tabs or may be menus or trees so question or questions are:
- I am planning to use iframes, does all major browser support them?
- Are iframes going to be deprecated, so what are alternatives e.g. is object tag supported by all major browsers?
- May be i can use some better strategy instead of iframe/object?
but what i love about iframes is that it can be totally modular, so each page doesn't know about other.
Note: i selected the answer which explain well but still i am not sure why not iframes question http://stackoverflow.com/questions/768222/iframes-vs-ajax may answer that
