Demo 1
Demo 2
Demo 3
Demo 4
$('.demo1').tbHinter({
text: 'A hint for this textbox'
});
$('.demo2').tbHinter({
text: 'A hint can be added to a <textarea> also'
});
$('.demo3').tbHinter({
text: 'A default class can be added to the hint text like this',
class: 'greyText'
});
$('.demo4').tbHinter({
text: 'Styling can also be done here',
class: 'greyTextItalics'
});
<input type="text" class="demo1" size="70" />
<textarea cols="55" rows="7" class="demo2"></textarea>
<input type="text" class="demo3" size="70" />
<textarea cols="55" rows="7" class="demo4"></textarea>
.greyText{
color: #CCCCCC;
}
.greyTextItalics{
color: #CCCCCC;
font-style: italic;
}
