OK, so I am having some trouble getting my head round a solution to get a certain jQuery plugin to work after an AJAX call has been successful and placed the data into the DOM.
The plugin is jScroll and I am sure that this plugin only identifies th开发者_Python百科e element call upon on page load, so if the element is loaded into the DOM through the AJAX call the plugin will not recognise the it thus not working.
I sthere any way round this that does not require a re-writing of the code?
Could you do something like -
$.get('ajax/test.html', function(data) {
$('.result').html(data);
$('.result').jscroll()
});
Which would get the result from the server add it to an element, then set up the jScroll functionality on that element.
精彩评论