I'm trying to use feedux datepicker and doesn't seem to even initialize it correctly! Any help would be greatly appreciated. I based it on examples here: https://gist.github.com/vernak2539/9980566
Page Title:
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet"> <link href="//www.fuelcdn.com/fuelux/3.4.0/css/fuelux.min.css" rel="stylesheet">
HTML:
<div class="fuelux"> <div class="datepicker dropdown" id="myDatepicker"> <div class="input-append"> <div class="dropdown-menu"></div> <input type="text" class="span2" value="" data-toggle="dropdown"> <button type="button" class="btn" data-toggle="dropdown"> <i class="icon-calendar"></i></button> </div> </div>
Before my JS:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.js"></script> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script> <script src="//www.fuelcdn.com/fuelux/3.4.0/js/fuelux.min.js"></script>
JS:
$(document).ready(function(){ $('#myDatepicker').datepicker(); });
And I tried the violin and thought that this would be enough, but it does not work: http://jsfiddle.net/z2rpos9g/
source share