Miva Merchant Development by Scot's Scripts

CSS: Clear Placeholder On Click

Miva Knowledge Base
CSS: Clear Placeholder On Click

WARNING:

This information is offered "AS IS" for internal reference only. Use at your own risk.
Does AI actually understand your Miva Merchant store? Our smart JSON-LD schema generator makes sure it does. Contact us to get started. (more info)

CSS: Clear Placeholder On Click

Scot Ranney • February 22, 2024


THIS CODE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED;
THE AUTHOR DISCLAIMS ALL LIABILITY FOR ANY DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR STORE DISRUPTIONS ARISING FROM ITS USE.


<style>
	input:focus::-webkit-input-placeholder { color:transparent; }
	input:focus:-moz-placeholder { color:transparent; } /* Firefox 18- */
	input:focus::-moz-placeholder { color:transparent; } /* Firefox 19+ */
	input:focus:-ms-input-placeholder { color:transparent; } /* oldIE ;) */
</style>

https://www.scotsscripts.com/mvblog/css-clear-placeholder-on-click-1.html

mvkb_css