HTML5 Input Type Date will allows the user to select a date. Previously this is done by Javascript date picker. To make you life easier you can now call this date picker by simply using this type="date" on your input field. May be looks like this way : [php]<input type="date" name="birthday" />[/php] Currently the latest […]
HTML5 Input Type Color
You can get color input box in html5 with this attribute type="color". With this new html5 Input Type Color, you no longer need a complex Javascript color picker. Not all major browsers support all the new input types. Only latest version of Chrome and Opera support this. If the browser are not supported, they will […]