setting placeholder tag of an input field

setting placeholder tag of an input field

I'm trying to set the placeholder attribute of an input field when my website loads, but it fails to do so.

This is my jquery code:

  1. $(document).ready(function(){
  2.     $("#mce-EMAIL").attr("placeholder","test?");
  3. })