Guest User

Untitled

a guest
Jun 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $('input:text')
  2. .filter(function(index)
  3. {
  4. return $(this).attr('maxlength') == 2147483647;
  5. })
  6. .each(function(index, element)
  7. {
  8. $(element).css('width', element.offsetWidth + 'px');
  9. });
Add Comment
Please, Sign In to add comment