Hi
I am loading Pies and Skills through an ajax request.
I know it loses functionality trough ajax, but how do I initialize the plugins. I have tried:
$(document).on('click','btnClick', function() {
$.ajax({
URL: 'getSkills.php',
type: 'POST',
SUCCESS: function(data){
$('#showDiv').html(data);
SEMICOLON.initialize.progress();
}
})What to do?
Is there a generel method when I initialize other plugins?
Looking forward to hear from you
