Skip to content

Instantly share code, notes, and snippets.

@dvdrtrgn
Created April 19, 2009 19:44
Show Gist options
  • Save dvdrtrgn/98186 to your computer and use it in GitHub Desktop.
Save dvdrtrgn/98186 to your computer and use it in GitHub Desktop.
Webapp-0
@media all {
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
body {
background-color: #eee;
color: #333 ;
font-size: 9pt ;
}
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
}
<!DOCTYPE html>
<html>
<head>
<meta http-equiv=Content-type content="text/html; charset=utf-8">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<title>Blah</title>
<style type="text/css"> @import url(base.css); </style>
<script src="base.js"></script>
</head>
<body>
<div>
<span>Xyz...</span>
</div>
</body>
</html>
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
var clog = function() {
var args = Array.prototype.slice.call(arguments);
console.log.apply(console, args);
document.write(args.join('<br>'));
};
/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
(function (x) {
clog('Abc',x);
})([123]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment