tabbed html application - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T17:55:46Z http://stackoverflow.com/feeds/question/750220 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/750220/tabbed-html-application 1 tabbed html application Anurag Uniyal 2009-04-15T03:38:45Z 2009-04-22T05:08:02Z <p>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:</p> <ol> <li>I am planning to use iframes, does all major browser support them?</li> <li>Are iframes going to be deprecated, so what are alternatives e.g. is object tag supported by all major browsers?</li> <li>May be i can use some better strategy instead of iframe/object?</li> </ol> <p>but what i love about iframes is that it can be totally modular, so each page doesn't know about other.<img src="http://img4.imageshack.us/img4/4327/mytabs.png" alt="alt text" /></p> <p>Note: i selected the answer which explain well but still i am not sure why not iframes question <a href="http://stackoverflow.com/questions/768222/iframes-vs-ajax">http://stackoverflow.com/questions/768222/iframes-vs-ajax</a> may answer that</p> http://stackoverflow.com/questions/750220/tabbed-html-application/750260#750260 0 Answer by roman m for tabbed html application roman m 2009-04-15T03:59:40Z 2009-04-15T03:59:40Z <p>it looks like your website is not static, so i don't see why you're doing it with bare HTML.</p> <p>I'd use <a href="http://www.asp.net/" rel="nofollow">ASP.NET</a> and CustomUserControl as each of your tabs, that they all the tab would be truly independent and you can reuse them anywhere in your application</p> http://stackoverflow.com/questions/750220/tabbed-html-application/750264#750264 1 Answer by eKek0 for tabbed html application eKek0 2009-04-15T04:03:23Z 2009-04-15T04:03:23Z <p>If I were you, I would use <a href="http://jqueryui.com/demos/tabs/" rel="nofollow">jQuery UI Tabs</a> instead of my own solution.</p> http://stackoverflow.com/questions/750220/tabbed-html-application/750275#750275 0 Answer by Dmitris for tabbed html application Dmitris 2009-04-15T04:05:52Z 2009-04-15T04:05:52Z <p>For the separate pages in each tab, you can as well use server includes.</p> http://stackoverflow.com/questions/750220/tabbed-html-application/750369#750369 0 Answer by Toby Mills for tabbed html application Toby Mills 2009-04-15T05:02:27Z 2009-04-15T05:02:27Z <p>To answer your first 2 questions:</p> <ol> <li><p>iframe is supported across all the latest web browsers however i am not sure about mobile browsers. Opera mobile yes, dont now about iPhone. </p></li> <li><p>the next major iteration of html is being led by <a href="http://www.whatwg.org/specs/web-apps/current-work/#the-iframe-element" rel="nofollow">WHATWG</a> and the iFrame will be supported. It is also supported in <a href="http://www.w3schools.com/tags/tag%5Fiframe.asp" rel="nofollow">xhtml</a></p></li> </ol> <p>As far as different approaches, that very much depends on what you are going to be doing with the tabs. if each tab is going to have a lot of information on it or take a while to load then separate iFrames is probably best. Also, if you are going to reuse the code as independent pages else where then iFrames are also a good option.</p> http://stackoverflow.com/questions/750220/tabbed-html-application/750482#750482 2 Answer by Calvin for tabbed html application Calvin 2009-04-15T06:03:02Z 2009-04-15T06:03:02Z <ol> <li><p>Yes, all major desktop browsers support iframes. So do many mobile browsers, including IEMobile, Opera Mobile, and Safari on the iPhone. The only major browser I know of that <i>doesn't</i> support iframes is the BlackBerry Browser.</p></li> <li><p>The object tag is supported by most browsers, but the implementation is extremely inconsistent across the various browsers.</p></li> <li><p>What's wrong with just having a flat page with an ordinary navigation menu? If you are only displaying one page at a time, and the only interface element being placed outside of the iframe is a tab menu, then why not just integrate the tabs into the page layout and do away with the frames?</p> <p>Frames of any sort tend to break the familiar browser behaviors that people are used--like the forward and back navigation buttons. And they completely disable the use of bookmarks. When building a website, you should try not to restrict or dictate to visitors how they're allowed to browse your site. If the user wants to open a link a new tab, they should not be left without a navigation menu. If they make their browser window a particular size, the page content should fill that area, not a predetermined area specified by the dimensions of the iframe.</p> <p>Frames are inherently user-unfriendly, which, unsurprisingly, makes them search-engine-unfriendly; which is why so few professional websites use frames/iframes. Cheap broadband is widespread enough these days that reloading a few extra kilobytes of navigational data makes no difference to the overall user experience.</p></li> </ol>