Skip to content

Instantly share code, notes, and snippets.

@namklabs
Created April 24, 2012 22:05
Show Gist options
  • Save namklabs/2484211 to your computer and use it in GitHub Desktop.
Save namklabs/2484211 to your computer and use it in GitHub Desktop.
fill in number fields
$.each( $("input[type=text]:visible"), function(){
$(this).val() == "" ? $(this).val( Math.random() * 5000 ) : "";
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment