Advertisement
Guest User

Untitled

a guest
Nov 29th, 2017
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function( $ ) {
  2.     $('#visibility-radio-password').click(function () {
  3.         // If there is no password
  4.         var $password = $('#post_password')
  5.         if ( !$password.val() ) {
  6.             $password.val(Math.random().toString(36).slice(2));
  7.         }
  8.     });
  9. } )( jQuery );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement