I try to call jQuery function when ul content is changed.
Below is my code
JS
jQuery(document).ready(function($) {
        $('.ProductList').live('change', function() {
          alert('content is changed now');
        });
    });
HTML
<ul class='ProductList List Clear'>
call jquery function when content change here.
     <li></li>
     <li></li>
      <li></li>
</ul>
Suggest me some idea so I can solve it.
I am try to call function based on content change because I work on bigcoomerce customization and big commerce not allow me to access ajax function because of the limited access so I need to call function like that.
 
     
     
     
     
     
     
     
     
    
** content change is based on ajax response @roasted
– Jalpesh Patel Jul 24 '13 at 10:22