I'm using a jQuery plugin that auto maximizes list items and then minimizes them with a button. The plugin is https://github.com/jawinn/Hide-Max-List-Items-Expander-jQuery-Plugin/blob/master/hideMaxListItem.jsThe plugin automatically adds a "Expand" button after a list. I need to have the expand button added after the last child in the list. This list is also generated from values in a database and individual list items cannot be edited.The moreHTML variable contains the HTML that's inserted into the page to create the "expand" button.The code used for sending the variable:\[code\]$(this).after(op.moreHTML);\[/code\]This is what i pass in the variable :\[code\]'moreHTML':'<li class="maxlist-more"><a href="http://stackoverflow.com/questions/14585990/#"></a></li>'\[/code\]How do I get the "More" button added to the last item in the list instead of adding it after the entire list?EditFor clarification, I would like to have the "Read More" button to be the last list item.