Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function findHint(input) {
- var t = $(input).closest('.line'); console.log('t', t.length);
- return t.find('.field_hint');
- }
- $(':text')
- .off('focus').on('focus', function() {
- findHint(this).show();
- })
- .off('blur').on('blur', function() {
- findHint(this).hide();
- })
Advertisement
Add Comment
Please, Sign In to add comment