Skip to content

Instantly share code, notes, and snippets.

@tokapeb
Created August 22, 2012 10:48
Show Gist options
  • Save tokapeb/3424326 to your computer and use it in GitHub Desktop.
Save tokapeb/3424326 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>JCSDL Editor | Save query example</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="jcsdl/jcsdl.min.css" />
<script type="text/javascript" src="jcsdl/jcsdl.definition.js"></script>
<script type="text/javascript" src="jcsdl/jcsdl.min.js"></script>
</head>
<body>
<div id="jcsdl"></div>
<textarea name="jcsdl-output"> </textarea>
<script type="text/javascript">
var editor = new JCSDLGui('#jcsdl', {
save : function(code) {
// output the resulting JCSDL code into a textarea
$('textarea[name="jcsdl-output"]').val(code);
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment