I try to call jQuery function when ul content is changed.
Below is my code
JS
jQuery(document).ready(function($) { $(\'.ProductList\
The ul element doesn't have onchange event like form elements.
I'm sure that the content of the li element is change by some function in your code. So the better way is to emit an event in that function and listen for that event;
May be this would help: Custom events in jquery