Skip to content

Instantly share code, notes, and snippets.

@Zulcom
Created November 12, 2017 08:09
Show Gist options
  • Save Zulcom/c64fe199a3d02edccc4bc7c297f9b853 to your computer and use it in GitHub Desktop.
Save Zulcom/c64fe199a3d02edccc4bc7c297f9b853 to your computer and use it in GitHub Desktop.
Display input size if exist
$("input").each(
function (i,e){
if(typeof $(this).attr('size') != typeof undefined)
$(this).after("<span> ("+$(this).attr('size')+")</span>");
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment