EN
                                
                            
                        jQuery - set value of input field
                                    1
                                    points
                                
                                In this article, we would like to show you how to set input field value in using jQuery.
Short solution
$('#my-input').val('This text has been set from javascript code...');
$('#my-input').attr('value', 'This text has been set from javascript code...');
1. Input val method example
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<head>
  <style>  
  
    input {
    	padding: 10px;
      	width: 300px;
    }
    
  </style>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
  <input id="my-input" type="text" value="" />
  <script>
    var input = $('#my-input');
    
    input.val('This text has been set from javascript code...');
  </script>
</body>
</html>
2. Input attr method example
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<head>
  <style>  
  
    input {
    	padding: 10px;
      	width: 300px;
    }
    
  </style>
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
</head>
<body>
  <input id="my-input" type="text" value="" />
  <script>
    var input = $('#my-input');
    
    input.attr('value', 'This text has been set from javascript code...');
  </script>
</body>
</html>