Easy JQuery input placeholder is a jquery plugin that allows you to add placeholder text to any input field.
You will need JQuery > 1.6 in order to use the plugin.
$(document).ready(function() {
$('.inputPlaceholder').addPlaceholder();
});and the html...
<input class="inputPlaceholder" type="text" name="test" placeholder="Testing placeholder"/>