In this sample, the watermark plug-in doesn't work at first, because the div "tbFirstName" is not loaded yet.
$(document).ready(function () {
$('#tbFirstName').watermark('Required information');
});
The (.live) Jquery tool or (.on) tool seem to work based on a event such as "click" or "blur". Do you know how I can get this watermark effect on a div that loads in the future, and without having to assign to a user-event?
Many thanks!