Untitled


SUBMITTED BY: trior

DATE: Dec. 23, 2015, 2:21 p.m.

FORMAT: HTML

SIZE: 591 Bytes

HITS: 838

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <script src="https://code.jquery.com/jquery-2.1.0.min.js"></script>
  5. </head>
  6. <body style="background-color: white; color: black;">
  7. <textarea rows="6" id="t">
  8. there is no
  9. love in the ghetto
  10. so come here
  11. and get it
  12. </textarea>
  13. <input type="button" onclick="getline()" value="get line" />​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​​
  14. <script type="text/javascript">
  15. function getline()
  16. {
  17. var t = $("#t")[0];
  18. alert(t.value.substr(0, t.selectionStart).split("\n").length);
  19. }
  20. </script>
  21. </body>

comments powered by Disqus