I am using ajax to load content from other html documents div#left-column to current div#left-column. Within the div#left-column is a jQuery accordion plugin; that when loaded by ajax, does not work. How can I get this to work? Below is my code :
Top of page is loaded with jQuery and ajax script:
$(document).ready(function() {
var hash = window.location.hash.substr(1);
var href = $('#mega-menu-2 li a').each(function(){
var href = $(this).attr('href');
if(hash==href.substr(0,href.length-5)){
var toLoad = hash+'.html #right-column';
$('#right-column').load(toLoad)
}
});
$('#mega-menu-2 li a').click(function(){
var toLoad = $(this).attr('href')+' #right-column';
$('#right-column').hide('fast',loadContent);
$('#load').remove();
$('#wrapper').append('<span id="load">LOADING...</span>');
$('#load').fadeIn('normal');
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
function loadContent() {
$('#right-column').load(toLoad,'',showNewContent())
}
function showNewContent() {
$('#right-column').show('normal',hideLoader());
}
function hideLoader() {
$('#load').fadeOut('normal');
}
return false;
});
});
then this snippet is included before </head> tag :
$(document).ready( function(){
$("#accordion").tabs("#accordion div.pane", {tabs: 'h2', effect: 'slide', initialIndex: null});
});
My HTML is below :
<div id="right-column" class="span-19 last">
<!-- accordion -->
<div id="accordion">
<h2 class="current">First pane</h2>
<div class="pane" style="display: block">
<img src="images/javascri.png" alt="JavaScript tools" style="float: left; margin: 0 15px 15px 0" />
<h3>Lorem ipsum dolor</h3>
<p><strong>Fusce semper, nisi nec pellentesque sollicitudin.</strong>
</p>
<p style="clear: both">Consectetur adipiscing elit. Praesent
bibendum eros ac nulla. Integer vel lacus ac neque viverra ornare.
Nulla id massa nec erat laoreet elementum. Vivamus tristique
auctor odio. Integer mi neque. </p>
</div>
<h2>Second pane</h2>
<div class="pane">
<h3>Vestibulum ante ipsum</h3>
<p>Cras diam. Donec dolor lacus, vestibulum at, varius in, mollis
id, dolor. Aliquam erat volutpat. Praesent pretium tristique
est. Maecenas nunc lorem, blandit nec, accumsan nec, facilisis
quis, pede. Aliquam erat volutpat. Donec sit amet urna quis
nisi elementum fermentum. </p>
</div>
<h2>Third pane</h2>
<div class="pane">
<h3>Curabitur vel dolor</h3>
<p>Non lectus lacinia egestas. Nulla hendrerit, felis quis elementum
viverra, purus felis egestas magna, non vulputate libero justo
nec sem. Nullam arcu. Donec pellentesque vestibulum urna. In
mauris odio, fringilla commodo, commodo ac, dignissim ac, augue.
</p>
</div>
</div>
</div>
<!--#right-column-->
jQuery is the only framework needed besides the ajax script for this to work. I've read some about the .live click function, but I do not know how to add it so that it works. Please help.
Sincerely,
Michael