Languages
[Edit]
EN

jQuery - get value of input field

12 points
Created by:
Root-ssh
175340

In this article, we would like to show you how to set input field value using jQuery.

Short solution

var value = $('#my-input').val();

var value = $('#my-input').attr('value');

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="This is example value..." />
  <script>

    var input = $('#my-input');
    var value = input.val();

    console.log(value);

  </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="This is example value..." />
  <script>

    var input = $('#my-input');
    var value = input.attr('value');
    
    console.log(value);

  </script>
</body>
</html>

Alternative titles

  1. jQuery - how to get value of input field?
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

jQuery

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join