I have used the place holder function in textboxes as a watermark in my form. But the problem is that, the same thing is not working in IE 8 browser. I cant see the watermark text in IE 8 browser.
Please see my asp code, as I have used.
HTML :-
<asp:TextBox ID="txtFirstName" runat="server" CssClass="txtFldName" placeholder="Enter your Full Name"></asp:TextBox>
Javascript for the the placeholder:-
<script src="../js/jquery.placeholder.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('input', 'txtFirstName').placeholder();
});
</script>