Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

single page application implemented with javascript/jQuery [closed]

Tags:

Hi I am looking for a very simple example of single page web application implimented with pure javascript/jquery. Don't want to use angular backbone ember etc..

like image 802
shikhar chauhan Avatar asked Jun 21 '15 05:06

shikhar chauhan


2 Answers

2021 Update:

It's nearing the end of 2021 and thought I would provide a newer solution/guide if possible. I did end up finding one, created a couple years ago, that uses modern day tools (npm, webpack, ES6, etc.):

spa-without-framework

However, I reviewed the original three guides below and TBH they're still relevant 6 years later! Which one you should choose solely depends on what suits your needs best.


Here are some links to help point you in the right direction. If you don't want to use any frameworks (Angular, Backbone, etc.) these links will be good. They use jQuery and perhaps one other library/plugin. Hope they help!

Guide A - uses jQuery library handlebars

Guide B - uses jQuery plugin bbq

Guide C - uses jQuery plugin sammy.js

like image 166
NightOwlPrgmr Avatar answered Oct 06 '22 23:10

NightOwlPrgmr


My website uses this, not trying to plug it: http://www.oriley.org. Basically you just need to have a bunch of hidden divs which are revealed when a link is clicked, making for a faster experience.

like image 29
omikes Avatar answered Oct 06 '22 22:10

omikes