diff --git a/RUTROLL/views/main.ejs b/RUTROLL/views/main.ejs index bac63a3..4bd1bde 100644 --- a/RUTROLL/views/main.ejs +++ b/RUTROLL/views/main.ejs @@ -28,6 +28,10 @@ } function renderData(data) { console.log(data) + $.each(data,function(){ + var liEl = "
  • " + this + "
  • "; + $("#resultData").append(liEl); + }); } $(document).ready(function(){ setEvent(); @@ -45,6 +49,7 @@ +