Skip to content

Instantly share code, notes, and snippets.

@jalvarado-it
Created October 5, 2020 19:43
Show Gist options
  • Save jalvarado-it/561c90b0147303f5c4c1888e7036c8c7 to your computer and use it in GitHub Desktop.
Save jalvarado-it/561c90b0147303f5c4c1888e7036c8c7 to your computer and use it in GitHub Desktop.
Hello Dojo Toolkit
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/dojo/1.7.12/dojo/dojo.js"></script>
<script>typeof(dojo) === "undefined" && document.write(unescape('%3Cscriptsrc="js/libs/dojo/dojo.js"%3E%3C/script%3E'))</script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
</head>
<body>
<div id="msg"><h1>Hello</h1></div>
<script>
require(["dojo/dom", "dojo/dom-construct"],function(dom,construct){
var msg = dom.byId("msg");
msg.innerHTML = "Hello Dojo!";
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment