Hello. How to make a request to the database via Aјax? I have two divs. On the left is a list of all entries from the database (but in a truncated form, 100 characters) And when I click, I want the entire entry to appear in the right div.
My jsp file
<div> <div> <div class="noteContextWindow" > <c:forEach items="${listNotes}" var="note"> <div class="notesList"> <a href="/notedata/${note.id}">${note.noteTitle}</a> <br/> <a class="contextInList">${note.noteContent}</a> </div> </c:forEach> </div> </div> <div class="noteContext"> <a> Some text </a> </div> </div> text from the base should appear where it says "Some text"