Skip to content

Instantly share code, notes, and snippets.

@CodeIQ
Created September 7, 2012 06:52
Show Gist options
  • Save CodeIQ/3663955 to your computer and use it in GitHub Desktop.
Save CodeIQ/3663955 to your computer and use it in GitHub Desktop.
120910_1
//[ index.html ]
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>scriptからscriptを読み込む</title>
</head>
<body>
<script>
document.write('<script src="javascript.js"></script>');
</script>
</body>
</html>
//[ javascript.js ]
document.write('読み込めたよ!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment