Created
October 1, 2013 16:48
-
-
Save eob/6781546 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<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