Javascript examples for DOM HTML Element:Input Color
You can create an <input> element with type="color" by using the document.createElement() method:
<!DOCTYPE html> <html> <body> <button onclick="myFunction()">create a Color picker</button> <script> function myFunction() {/*from ww w. j a v a2s .c om*/ var x = document.createElement("INPUT"); x.setAttribute("type", "color"); document.body.appendChild(x); } </script> </body> </html>