I am trying to learn some things from AJAX and jQuery, i believe that it is a basic knowledge a programmer must have. I am a self instructed so I am reading tutorials and examples to get in touch with these technologies as good as I can.
I saw this page http://www.soby.gr that I guess uses a XML feed for the main content ( is a groupon like aggregator ). My question is what did they use for their menu on the left of the page. When you click/select an option, the content on main page changes based on the criteria the user clicked on. For example SPA will show only the deals having SPA.
What I like is how fast the content is filtered.
Can anyone give me some clues about how it is working and what technology is used for that fast content-changing?
Thank you all.
This can be done very easily using jquery. There’s a jquery built in function called
.load('your div content page path')so, when you click a menu, you can just load only the particular part. following is an example: