AJAXify your Website


Revision as of 11:28, 21 September 2010 by Tkinnear (talk | contribs) (moved AJAXify your Viviti Site to AJAXify your Web-Builder Site: no more viviti)

You can AJAXify your Viviti site, or make all of your pages load via AJAX by adding some simple JavaScript code utilizing the built in jQuery.

Since the main content area of Viviti is inside a div#location_0, all you have to do is hook into the Primary Navigation links and use the jQuery load function to replace the contents of #location_0 on the current page with the contents of #location_0 on the target page. Adding a slideUp/slideDown with some callbacks makes it have a nice transition as well.


Adding to your Site:

In order to add this code to your website's source code, you'll need to follow the directions below:


1. Go to the My Website toolbar menu, and click on Edit Theme Source Code.
2. Click on the default.html in the table that lists your theme files.
3. Add the following code below code inside of the <head> element:


<script type="text/javascript">
$j('#primary_navigation li a').click(function() { loadPage( $j(this).attr('href')); return false; });

function loadPage( page ) { 
  $j('#location_0').slideUp(300, function() { 
    $j('#location_0').load( page + ' #location_0 > *', function() { $j('#location_0').slideDown(300);}); 
  });
}
</script>


Example:

Viviti user Yuao's site is currently configured to load pages via AJAX:

http://showcase.imyuao.com/