Search
 
SCRIPT & CODE EXAMPLE
 

CSS

Hide calendar icon

/* Hide the clear button from date input */

input[type="date"]::-webkit-clear-button {
 -webkit-appearance: none;
  display: none;
}
Comment

how to remove default calendar icon

<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
    <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
    <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
    <p>Date: <input type="text" id="datepicker"></p>
    <script>
    $(function(){
        $("#datepicker").datepicker({
            dateFormat: "yy-mm-dd"
        });
    });
    </script>
Comment

PREVIOUS NEXT
Code Example
Css :: disable selected text css 
Css :: custom selection color css 
Css :: how to set color of instagram css 
Css :: overflow dots css 
Css :: input checkbox size 
Css :: overlay css background image 
Css :: navbar box shadow 
Css :: css placeholder color 
Css :: css spread children horizontally 
Css :: remove styling from a tag 
Css :: how to make text bold in css 
Css :: grid template column auto fill 
Css :: how to center a div in css 
Css :: rainbow text with css 
Css :: css odd even child 
Css :: meyer-reset css cdn 
Css :: out transition does not ease 
Css :: underline height 
Css :: ul no indent 
Css :: tint png white css 
Css :: css visibility 
Css :: css start animation on hover 
Css :: html scrollable without scroll bar 
Css :: css beutify scroller 
Css :: css overflow y 3 dots 
Css :: css shadow on hover 
Css :: border radius not working 
Css :: set rotation of img in css 
Css :: background color inline styling 
Css :: css select every other element 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =