Home > Mobile >  How to Rename custom html color picker select text
How to Rename custom html color picker select text

Time:10-27

When providing a default color it shows: Other... How do I rename Other... to Custom Color ?

http://jsfiddle.net/lotusgodkk/GCu2D/4045/

CodePudding user response:

That isn't possible. The implementation of <input type="color"> is up to the browser and you can't change it. You can, however, make your own color picker in HTML/CSS/JS.

  • Related