DEV Community

Discussion on: Need help / suggestions on a project

Collapse
 
checkboxoz profile image
Oz Ramos

If you're going vanilla then I would start by visualizing the app as one .room that contains a bunch of .table's. By using HTML, you can even add sub elements to the table, like delete buttons:

<div class="room">
  <div class="table">
    <img>
    <button onClick="deleteTable">x</button>
  </div>
  <div class="table">...</div>
  <div class="table">...</div>
</div>

Then, I'd make use of one of the many drag and drop libraries, like: