Changed href to class and added: var toLoad = which was in the nettuts tutorial. (link above)
1) $('#nav li a').click(function(){ var toLoad = $(this).attr('class')+' #video'; 2) I have added a unique class to each <li> <li><a href="#first-a" class="first-a-video"</a></li> <li><a href="#first-b" class="first-b-video"</a></li> 3) I have now got the destination div as: <div id="video"> I now need to find a way to call the <li> classes to get them to show in the #video div. Bad ideas, or ok? that is the question. :-)) In the nettuts tutorial the href is the new .html file which is the content that swaps out. I need to use unique classes I guess as the href is calling other stuff on the page for the scrollto events. Have to figure out how to get the videos or jpgs to only show the one that relates to the clicked <li> and hide the others in the the #video div. duh! ?? hehehe great fun!