<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script> <script> $(document).ready(function(){ $( "<input type=button id='test' value='изменить размер'>" ).appendTo( "body" ); $("#test").click(function(){ let w = Math.random()*100 + 100; let h = Math.random()*100 + 100; $(this).width(w); $(this).height(h); });
});
</script> </head> <body>
</body> </html>