D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
sarnobat
Full window
Github gist
jQuery call REST service
<!DOCTYPE html> <html> <head> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $.getJSON("https://localhost:9099/helloworld/json?param1=" + encodeURIComponent(document.getElementById("urls").innerHTML),function(result){ $.each(result, function(i, field){ $("#items").append(i + " " + field + " "); }); }); }); }); </script> </head> <body> <textarea id="urls">https://www.yahoo.com</textarea> <button>Stash this</button> <div id="items"></div> </body> </html>
https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js