Advertisement
Guest User

Untitled

a guest
Feb 28th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. function points(element){
  2. element.each(function (i){
  3. $(this).children("div#points").append("_");
  4. var height = $(this).height();
  5. do{
  6. $(this).children("div#points").append("_");
  7. }while($(this).height()<height+1);
  8.  
  9. var text = $(this).children("div#points").text();
  10. $(this).children("div#points").text(text.substr(0,text.length-1));
  11.  
  12. });
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement