Skip to main content

Posts

Showing posts from September, 2011

Text Watermark using java script

Forget Password? hi friends today i am going to show u the how to create a text watermark using ** Java Script & **HTML -just copy the code given below and paste it in notepad and save as (watermark.html). you can use any name but should be ending with .html extension ****** <head> <style type="text/css"> </style> <script>function watermark(inputId,text){ var inputBox = document.getElementById(inputId); if (inputBox.value.length > 0){ if (inputBox.value == text) inputBox.value = ''; } else inputBox.value = text; } </script> </head>  <table width="300" border="0" align="right" cellpadding="0" cellspacing="1" > <tr> <form name="form1" method="post" action="checklogin.php"> <td> <table width="100%" border="0" cellpadding=...