Another and quick question I am attempting to make my first Music type site which has become A success so far, Now I am trying to Order the data based on the way the album is structured.
So say if
1: The Metal Song (was the first album on the track by the recording studios)
It would displayed it in that order in the site what would be the best method in getting this organized on the site? it will be one of my top priorities in keeping the albums legit to the actual album launched in the music store.
Wouldn't copy and pasting be the easiest way? So get the album track list from a website and just copy and paste it into your site. There it's ordered correctly 🙂
I know you have good intentions and all, but really, JQuery for that sort of thing is pointless. Sucking CPU cycles to check every, what, 5 seconds for a typo to be fixed is asking for trouble. People browse with mobile devices, I'm sure they, when on Cellular for example, won't want the page to continue to load real-time data after the page has loaded.
We have enough issues with real time transport data (Yes, that chews 3/4G at best)
Big sites like Facebook or YouTube reli on Java Script or Something like JQuery if you goto Setting and disable JS the site will now barely or not work.
If i'm calling the click function it will only load data once they click A link or button I will try my best to get it done in the most efficient way.
Instead I can add just add A button that says 'Refresh' once they have clicked it that will get the new data from the server without reloading the whole page.
As specified above the click function will do this.
That was I was saying, If i where to use $AJAX to load the data every X amount of secounds that would make massive changes to the CPU cycle and depending how many users logged in to the webstie at the time.
but using A simple click method won't use nor make any diffrence to the CPU cycles as it just like refreshing the page to get the data it may also be 2 percent better becuase it won't require A page refresh.
As for facebook JQuery has AJAX implementation like Kavin has said.