Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Disable Certains Days in a Week using jQuery UI DatePicker</title>
<link href="https://www.stanway.essex.sch.uk/css/excite-bike/jquery-ui-1.10.3.custom.css" rel="stylesheet">
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<script type="text/javascript">
  $(function() {
      $("#datepic").datepicker(
        { beforeShowDay: function(d) {
            var day = day.getDay();
         alert(day);
            if (day == 5 || day == 7) {
                return ['adios'];
              alert(day);
            } else {
                return ['hola'];
            }
        }
        });
    });
</script>
</head>
<body>
<input id="datepic"/>
</body>
</html>
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers