jQuery Advisor plugin

Advisor is simple jQuery plugin to help users to understand what should they write in inputs. Just set class = "show_advice" for your inputs and set up Advisor:

$(document).ready(function() { $('#first').fAdvisor(); });

You can also set few variables:

for example:

$(document).ready(function() { $('#first').formAdvisor({ fadeTime: 1500}); });

will change time of fade in advisor box to 1500ms.

Remember also to add css style to advisor box class (form_advisor).

Example 1:

Example 2:

Example 3:

here..