document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. function draw_signature(e)
  2. {
  3.   //document.getElementById("content") or $("#content")[0] it\'s basically the same
  4.   var objContent = $("#content")[0];
  5.   var xClicked   = e.pageX - objContent.offsetLeft;
  6.   var yClicked   = e.pageY - objContent.offsetTop;
  7. }
');