Posts

Showing posts from April, 2014

jQuery date picker

<style type="text/css">    .datepick {     background-color: #fff;     color: #222;     border: 1px solid #c4c4c4;     font-family: Arial,Helvetica,Sans-serif;     font-size: 90%; } .datepick-rtl {     direction: rtl; } .datepick-popup {     z-index: 1000; } .datepick-disable {     position: absolute;     z-index: 100;     background-color: white;     opacity: 0.5; } .datepick a {     color: #222;     text-decoration: none; } .datepick a.datepick-disabled {     color: #888;     cursor: auto; } .datepick button {     margin: 0.25em;     padding: 0.125em 0em;     background-color: #fcc;     border: none;     border-radius: 0.25em;     -moz-border-radius: 0.25em; ...