jQuery AJAX

Send AJAX requests with this jQuery script.

by Clay Anderson

HTML

<script src="http://fonts.googlepis.com/css?famaily=Open+Sans:400,700"></script>
F12 to open the developer console

JavaScript

$(function(e) {
  $.ajax({
    url: "https://identity-stg.trimble.com/userinfo?schema=openid", 
    type: "GET",
    headers: {
			"Authorization": "Bearer 6l0kp9sx_4K7ggr24rzLd9Ec7Nka"
    }
  });    
});