Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (function()
- {
- div = document.createElement('div');
- div.id="licznik";
- div.style.position="absolute";
- div.style.top="0";
- div.style.left="0";
- div.style.width="100px";
- div.style.height="30px";
- document.body.appendChild(div);
- var licznikZ =
- setInterval(
- function(){
- var dl = document.getElementById('latex_formula').value.length;
- div.innerHTML = dl + '/1000';
- },
- 10);
- })();
Advertisement
Add Comment
Please, Sign In to add comment