Last active
October 18, 2016 09:16
-
-
Save dklisiaris/8962e48d1e67ec72969440af5190f016 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fills all textareas and text input fields in page with random characters | |
$.each($("textarea, input[type='text']"), function(index, textfield){ | |
$(textfield).val(Math.random().toString(24).substring(7)) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment