Created
February 20, 2016 21:39
-
-
Save triton11/2f08375e702a80c7e8f6 to your computer and use it in GitHub Desktop.
epic test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<script src="jquery-1.12.0.js"></script> | |
<title>Epic Test One</title> | |
<link rel="stylesheet" href="main.css"> | |
</head> | |
<body> | |
<h2>Welcome!</h2> | |
<h3> This is a test </h3> | |
<script type="text/javascript"> | |
var baseUrl = "https://open-ic.epic.com/FHIR/api/FHIR/DSTU2/" | |
var patientSearchString = "/Patient?given=Jason&family=Argonaut" | |
$.getJSON(baseUrl + patientSearchString, function(data,error) { | |
console.log(data); | |
}); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment