
Placeholdem.js is a lightweight javascript plugin that animates the placeholder with a typewriting effect for input of textarea.
The placeholder value will incrementally delete on focus, and restore on blur. Works with modern browsers that support Html 5 placeholder attribute.
How to use it:
Create a text filed with placeholder attribute.
<input name="field" placeholder="CSSScript.Net" />
Include the placeholdem.js in the page, before the closing </body> tag.
<script src="placeholdem.min.js"></script>
Run Placeholdem on all elements with placeholders.
Placeholdem( document.querySelectorAll( '[placeholder]' ) );
Changelog:
v1.0.2 (06/13/2018)
- restore placeholder text when a form reset action occurs








hello, how do to validate if the input is empty?, the val () method does not return empty, it returns the value of the placeholder
$(“#idInput”).val()