Javascript examples for jQuery:Form Input
Change color of value in input
<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>