Home
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <script> $(document).ready(function () { $(":text").val("xyz"); }); </script> </head> <body> <h1>CSS Selector: :text </h1> <div class="myClstest"> Enter Username: <input type="text" /> Enter password : <input type="password" /> </div> </body> </html>
Result: