SwVitaliy

Untitled

Dec 5th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. function aaa(inputs) {
  2. console.log('0', inputs);
  3. function findHint(input) {console.log('find');
  4. var t, inp = $(input);
  5. if (inp.attr('hint')) {console.log('hint', inp.attr('hint'), $('#hintText_' + inp.attr('hint')).length);
  6. return $('#hintText_' + inp.attr('hint'));
  7. } else {
  8. t = inp.closest('.line');
  9. return t.find('.field_hint');
  10. }
  11. }
  12.  
  13. (inputs || $(':text'))
  14.  
  15. .off('focus').on('focus', function() {console.log('focus');
  16. findHint(this).show();
  17. })
  18.  
  19. .off('blur').on('blur', function() {console.log('blur');
  20. findHint(this).hide();
  21. })
  22. }
Advertisement
Add Comment
Please, Sign In to add comment