My Jquery dual list box isn't working when I call a page via ajax. But if I navigate to the page, the Jquery works. I've used the .live code but that doesn't seem to work. Any suggestions. The below code, I thought would work, but it doesn't.

$(function(){
    $('.button').live('click', function(){ 
		$(function() {$.configureBoxes();});
	} );
});

Here is the dual list box I am using.
http://www.meadmiracle.com/dlb/DLBPlugin.aspx

http://www.meadmiracle.com/dlb/DLBDocumentation.aspx

I've figured it out. I used the jquery ajax call, and called the configureboxes function. The assessmentdisplay is the id of a table, to display.

$.ajax({
url: "test.html,
success: function(assessmentdisplay){
$('##assessmentdisplay').html(assessmentdisplay);
$.configureBoxes();
}
});
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.