Javascript examples for jQuery:Form Text Input
Add Textbox title
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.js"></script> <script type="text/javascript"> $(window).load(function(){// ww w .j av a 2 s .c om $('input').attr('title', 'some title'); }); </script> </head> <body> <input type="text"> </body> </html>