UNPKG

chandnasujatha_shoppingexample

Version:

Demo for NodeJS

26 lines (25 loc) 617 B
<!Doctype html> <html> <head> <title>Main Page</title> <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> <script> $(document).ready(function(){ var url = 'http://localhost:5432/'; $.get(url,function(data){ var collection = JSON.parse(); $.each(collection,function(index,value) { var p = '<p>' +value.EmpName + '</p>' $("div").append(p); }) } ) } ) </script> </head> </html>