Skip to content

Instantly share code, notes, and snippets.

@eob
Created October 1, 2013 16:48
Show Gist options
  • Save eob/6781546 to your computer and use it in GitHub Desktop.
Save eob/6781546 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="CTS Example: Loading JS" />
<title>CTS Example: Loading JS</title>
<script src="http://treesheets.org/cts.js"></script>
<style type="text/cts">
@js http://code.jquery.com/jquery-1.10.1.js;
</style>
</head>
<body style="padding: 20px">
Did CTS link in jQuery for us? <span class="answer">no</span>
<script>
CTS.ready.then(function() {
jQuery('.answer').html('yes');
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment