Simple, pure javascript, no jQuery, oekaki applet. Originally written for Fikaba.
Here is a really professional test image, drawn with this very piece of software:
- Not written in Java
- Does not use jQuery
- You can draw images and stuff
<!doctype html>
<html>
<head>
<title>ritare test</title>
<meta charset="utf-8" />
<script type="text/javascript" src="ritare.js"></script>
<link type="text/css" href="ritare.css" rel="stylesheet" />
</head>
<body>
<div id="painter">
<script type="text/javascript">
Ritare.start({
parentel: "painter",
onFinish: function(e) {
window.open(Ritare.canvas.toDataURL('image/png'))
},
width:600,
height:300
});
</script>
</div>
</body>
</html>
Something like that. You'll figure it out.