SwVitaliy

Untitled

Dec 5th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function findHint(input) {
  2. var t = $(input).closest('.line'); console.log('t', t.length);
  3. return t.find('.field_hint');
  4. }
  5.  
  6. $(':text')
  7.  
  8. .off('focus').on('focus', function() {
  9. findHint(this).show();
  10. })
  11.  
  12. .off('blur').on('blur', function() {
  13. findHint(this).hide();
  14. })
Advertisement
Add Comment
Please, Sign In to add comment