Welcome folks today in this blog post we will be converting decimal to HEX color converter
in vanilla javascript. All the full source code of the application is shown below.
Get Started
In order to get started you need to make an index.html
file and copy paste the following code
index.html
1 2 3 4 5 6 7 8 |
<div id="container"> <div id="colorBox"></div> <div id="inputDiv"> <input id="decInput" type="text" value=4095 maxlength="8" pattern="[0-9]+"> <input id="hexInput" type="text" value=#FFF maxlength="7" pattern="[a-fA-F0-9]+"> </div> </div> <script src="https://code.jquery.com/jquery-2.2.4.min.js"></script> |