Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 13th, 2012  |  syntax: None  |  size: 0.40 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <script type='text/javascript'>
  2.   $("#status_field").autocomplete(screen_names, {
  3.   multiple: true,
  4.   matchContains: false,
  5.   autoFill: false,
  6.   max: 1000
  7. });
  8. jQuery(function($) {
  9.   var countdown = $('#countdown');
  10.   var allowed = parseInt(countdown.text());
  11.   $('#status_field').keyup(function() {
  12.   var length = $(this).val().length;
  13.   countdown.text(allowed - length);
  14.   });
  15. });
  16. </script>