asmodeus94

codecogsCounter

Feb 17th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function()
  2. {
  3.     div = document.createElement('div');
  4.     div.id="licznik";
  5.     div.style.position="absolute";
  6.     div.style.top="0";
  7.     div.style.left="0";
  8.     div.style.width="100px";
  9.     div.style.height="30px";
  10.     document.body.appendChild(div);
  11.     var licznikZ =
  12.     setInterval(
  13.         function(){
  14.             var dl = document.getElementById('latex_formula').value.length;
  15.             div.innerHTML = dl + '/1000';
  16.         },
  17.     10);
  18. })();
Advertisement
Add Comment
Please, Sign In to add comment