Change theme:   
Fills content searching from elements. Code is at https://github.com/Edicy/edicy-jsplugins/blob/master/api-plugins/jquery.edicyContentAutofill.js


List:


Content:


Code


<div class="autofiller">
  <input type="text">
  <br/>List:<br/>
  <div class="fill-list"></div>
</div>
<br/> <b>Content:</b><br/> <div class="auto-content">{% content name="fillcontent" %}</div>
<style type="text/css"> .autofiller .fill-list a { display: block;  clear: both; }
.autofiller .fill-list { height: 150px; width: 300px; overflow: auto; border: 2px dashed #ccc; }
.auto-content { border: 2px dashed gray; padding: 1em; } </style>
<script type="text/html" id="content-fill-template"> <h3>[[title]]</h3> <p>[[values.description]]</p> </script>
<script type="text/javascript" src="/javascripts/jquery.edicyContentAutofill.js"></script> <script type="text/javascript"> $('.autofiller').edicyContentAutofill({ template: "#content-fill-template", inputEl: "input", listEl: ".fill-list", searchBy: "title", "contentElement": ".auto-content" }); </script>