I want the placeholder to move to the top when the textbox is on focus and also while the user is typing.
I\'m not sure if this is just html/css or any javascript to
span{ display:block; } input:focus::-webkit-input-placeholder { color:transparent; } input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */ input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */ input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */