Skip to content

Instantly share code, notes, and snippets.

@tokapeb
Created August 22, 2012 10:55
Show Gist options
  • Save tokapeb/3424360 to your computer and use it in GitHub Desktop.
Save tokapeb/3424360 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 | Load 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-input"></textarea>
<br />
<a href="#" id="load-jcsdl">Load query</a>
<script type="text/javascript">
var editor = new JCSDLGui('#jcsdl', {
});
// read the JCSDL upon clicking the "Load JCSDL" button
$('#load-jcsdl').click(function() {
// read it from the input textarea
var code = $('textarea[name="jcsdl-input"]').val();
// load it into the editor
editor.loadJCSDL(code);
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment