My date picker won't pop out below, it is always opening upwards, and I don't know why because on the ui jquery demo, the datepicker opens downwards.
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
<script>
$(document).ready(function() {
orientation: "top auto"
$(".datepicker").datepicker();
});
</script>
<div id="div4">
<p>What date do you wanna get outta here?</p>
<input class = "datepicker" name = "outboundDate" /><br>
</div>