Full Channel website
Levi Maaia, VP of Full Channel Cable a family owned cable service provider in Rhode Island, contacted me in order to update the website to fully integrate the preexisting design with the Wordpress back end for easy interfacing. After customizing wordpress, I even included an accordion navigation jquery menu on the sub-pages with the following code:
function initMenu() {
$('.flexibleNav ul ul').hide();
$('li a').click(function()
{
$(this).next().slideToggle('fast');
}
);
}
$(document).ready(function() {initMenu();});
At a future date, I intend on adding a cookie to remember the menu state for when navigating from page to page.

Leave a Reply