Set input text color

Description

The following code shows how to change text color for input element.

Example


<html>
<head>
<script
  src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
  $(document).ready(function() {<!--from  w w w .j  a  v  a2s.c  o  m-->
    $("label + input").css("color", "red").val("value")
  });
</script>
</head>
<body>
  <form>
    <label>Name:</label> <input name="name" />
    <fieldset>
      <label>Address:</label> <input name="newsletter" />
    </fieldset>
  </form>
  <input name="none" />
</body>
</html>

Click to view the demo





















Home »
  jQuery »
    jQuery Example »




Animation
DOM
Event
Form
List
Select
Style
Table
Utilities