Is it a poor design choice to hold all of my content within one page of JavaScript/HTML/CSS code? That is to say, I would have navigation buttons that would simply show/hide relevant aspects of the website.

I know this might be website dependent, but this is a relative website/web app so hopefully the answers will generalize.

link|improve this question

It really depends. How much content do you have? I'd say a good way is to disable all the styles and all the JavaScript, and look at it like that. Can you still understand it? How much scrolling do you have to do to get to what's important? Are there member pages that don't belong and really should be separate? – minitech Jan 10 at 17:33
The initial content is quite minimal. I was concerned more about any technical implications / scalability issues that restricting myself to one page might cause. – sdasdadas Jan 10 at 17:52
feedback

5 Answers

up vote 2 down vote accepted

This may not be the answer that you're looking for, but it really depends on what you're trying to do. If you have a small amount of content that's being hidden and shown based upon the user's actions, then loading it all at once may be the way to go.

However, if you're trying to show and hide a lot of information that could be interactive and have a lot of additional data associated with it (like large drop-down lists or dynamic data), you may want to load those parts of the application on demand, so that your initial page structure loads and then as the user interacts with the page, the secondary sections then load.

jQuery UI allows you to do this by allowing you to hook up ajax calls to dynamically load tabs when clicked, accordion sections when expanded, or dialogs when requested. I've used this a lot in my current projects and it really cuts down on the size of your initial DOM loaded and, assuming the user has a decent connection, allows you to bring down additional 'parts' of your page at a low cost.

(EDIT: I should have noted that almost any JavaScript framework allows for dynamic loading of content, along with just using JavaScript itself sans framework.)

link|improve this answer
This is effectively my plan - thank you for verifying. I just wanted to ensure I wouldn't be shunned as a web leper if I kept my content and UI in one page. – sdasdadas Jan 10 at 17:56
Glad I could help! Good luck with your project. – David Hoerster Jan 10 at 17:58
feedback

It depends on the size of your page. Keep in mind that all the data needs to be transfered over the wire. If your page is very big, then yes it is a bad idea because the loading time would be very bad. Don't forget people with slow internet connection and mobile devices.

Please provide more information.

link|improve this answer
The page is quite dynamic (it fetches a bit of data from a database via aspx). Therefore, the content provided via HTML is minimal and mostly just the skeleton of whatever the user requests. – sdasdadas Jan 10 at 17:49
I cant see your code. But if you load the most dynamically using ajax then you can maybe do that. – dknaack Jan 10 at 17:52
feedback

its a bad design, you should have seperated css js and html files. also each page should have its own html file while common components like header\footer can be included from all htmls.

link|improve this answer
I have separated JS, CSS, and HTML files. My question was more related to whether I should split my HTML and JS files into separate ones, or keep them both in a large HTML and a large JS. – sdasdadas Jan 10 at 17:53
feedback

There's actually a design pattern for this in the .NET world - I forget what it's called, but basically index.aspx would be the only page in your site and the content changes based on the user's interactions.

With jQuery and plain HTML I think the same think the same thing is theoretically possible depending on how big your page is (see the other response about the size of your page).

Keep maintenance in mind as you're developing it.

link|improve this answer
Most development will be done on the server side, so hopefully my page size will remain fairly static. – sdasdadas Jan 10 at 17:54
feedback

The best person who can give you an answer to this question are the potential users of your website/app.

It might be useful for them to open several pages in different tabs, for easier bookmarking and navigation. Also by doing everything in one page you lose the browser's most used features: "Back" and "Forward" button.

Usually what would lead you to do everything in a single page is that you want to have a single URL for everything, for either technical or organizational reasons.

If you have the time, I suggest making a quick prototype and let some possible users test it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.