Change color of value in input - Javascript jQuery

Javascript examples for jQuery:Form Input

Description

Change color of value in input

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*  w  ww.  j  a v a2s.co  m*/
$('.problem').css('color', 'blue');
    });

      </script> 
   </head> 
   <body> 
      <input class="problem" type="text" value="some text" disabled>  
   </body>
</html>

Related Tutorials