Instructions/Rules Inside Text Area

I know it is possible to change the “Enter Title Here”. But is there’s a function to add text (“how to…”, “simple rules to post…”) inside the post text/input area! Any help?

Related posts

Leave a Reply

2 comments

  1. You can use Qtip to write your how to…”, simple rules to post…”
    and it will show on hover for each element

    $("jqueryselector").qtip({
       content: 'I'm at the top right of my target',
       position: {
          corner: {
             target: 'topRight',
             tooltip: 'bottomLeft'
          }
       }
    })
    

    Update:

    even simpler you can use “Jquery Form Field Default Value plugin

    Demo

    Usage:

    $("#myfield").DefaultValue("My Default Value..");