Skip to content

Instantly share code, notes, and snippets.

@porkozone
Last active May 16, 2016 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save porkozone/fac5ad4047c1645021d4dffbd3e55691 to your computer and use it in GitHub Desktop.
Save porkozone/fac5ad4047c1645021d4dffbd3e55691 to your computer and use it in GitHub Desktop.
<html>
<head>
<!-- put styling information here -->
</head>
<body>
<h1>Example</h1>
<p> A QuickBase table embedded in a page of HTML</p>
<div id="dbPagePayload"></div>
<script lang="text/javascript">
$.post("https://OURCOMPANY.quickbase.com/db/OURTABLE?a=API_GetRecordAsHTML&dfid=13&apptoken=OURTOKEN&key=2370007507054", {},
function(response){
$("#dbPagePayload").html(response);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment