Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Multipage vs Single Page and Unobtrusive Javascript

I have a section of a site with multiple categories of Widget. There is a menu with each category name. For anybody with Javascript enabled, clicking a category reveals the content of the category within the page. They can click between categories at will, seeing the DOM updated as needed. The url is also updated using the standard hash/hashbang (if we are being Google-friendly). So for somebody who lands on example.com/widgets, they can navigate around to example.com/widgets#one, example.com/widgets#two, example.com/widgets#three etc.

However, to support user agents without Javascript enabled, following one of these category links must load a new page with the category displayed, so for someone without javascript enabled, they would navigate to example.com/widgets/one, example.com/widgets/two, example.com/widgets/three etc.

My question is: What should happen when somebody with Javascript enabled lands on one of these URLS? What should someone with Javascript enabled be presented with when landing on example.com/widgets/one for example? Should they be redirected to example.com/widgets#one?

Please note that I need a single page site experience for anybody with Javascript enabled, but I want a multi-page site for a user agent without JavaScript. Any answer that doesn't address this fact doesn't answer the question. I am not interested in the merits or problems of hashbangs or single-page-sites vs multi-page-sites.

like image 984
Undistraction Avatar asked Feb 24 '13 11:02

Undistraction


People also ask

Is it better to have a one page website or multiple pages?

To sum up: single page design is great when you've got narrow focus or you're encouraging users to perform a specific task. It's also ideal for mobile-first design. On the other hand, multi-page design allows you to widen your reach potential, stick to traditional navigation systems and optimize your SEO strategy.

What is the difference between single-page application and multi page application?

A SPA is an app that works inside a browser and does not require page reloading during use. On the other hand, a multiple-page application is considered a more classical approach to app development. The multi-page design pattern requires a page reload every time the content changes.

When should you not use a single-page application?

Single-page applications don't allow a lot of features on one page, which can lead to longer loading times. Therefore, when company needs more features, they decide to use multi-page applications.

Are single page applications Dead?

Single page apps are all the rage today, but they don't always operate the same as traditional web pages. [Ed. note: While we take some time to rest up over the holidays and prepare for next year, we are re-publishing our top ten posts for the year. Please enjoy our favorite work this year and we'll see you in 2022.]


2 Answers

Apparently your question already contains the answer. You say:

I need a single page site experience for anybody with Javascript enabled

and then ask:

What should someone with Javascript enabled be presented with when landing on example.com/widgets/one for example? Should they be redirected to example.com/widgets#one?

I'd say yes, they should be redirected. I don't see any other option, given your requirements (and the fact that information about JavaScript capabilities and the hash fragment of the URL are not available on the server side).


If you can accept relaxing the requirements a bit, I see another option. Remember when the web was crowded with framesets, and we landed on a specific frame via AltaVista (Google wasn't around yet!) search? It was common to see a header saying that page was supposed to be displayed as a frame, and a link to take the user to the frameset version.

You could do something similar: when scripting is available, detect that you're at example.com/widgets/one and add a link to the single-page version. I know that's not ideal, but it's better than nothing, and maybe better than a nasty client-side redirect.

like image 45
bfavaretto Avatar answered Sep 19 '22 15:09

bfavaretto


This is how I would structure it:

Use HistoryJS to manage the URL. JS pushstate browsers got full correct URLs and JS non-pushstate browsers got hashed urls. Non-JS users went to the full URL as normal with a page reload.

When a user clicks a link:

If they have JS: All clicks to other pages are handled by a function that prevents the default action, grabs the HREF and passes the URL to an ajax request and updates the URL at the same time. The http response for that ajax request is then parsed and then loaded into the content area.

Non JS: Page refreshed as normal and loads the whole document.

When a page loads:

With JS: Attach an event handler to all your links to prevent the default so their href is dealt with via Ajax.

Without JS: Nothing. Allow anchors to work as normal.

I think you should definitely have all of your content accessible via a full, correct URL and being loading it in via ajax then updating the URL to reflect the address where you got your content from. That way, when JS isn't running, you don't have to change anything.

Is that what you mean?

like image 185
Gary Stevens Avatar answered Sep 20 '22 15:09

Gary Stevens