javascript - Changing width of an input whilst using a plugin? -
i using plugin called pickadate.js , want able change width of input depending on date select example.
i trying use this function 'onclose' change width of input having no success.
$('.datepicker').pickadate({ formatsubmit: 'yyyy-mm-dd', onclose: function() { var dateformat = $('.date').val(); $('.datespan').text(dateformat); }, }); this should have no spacing on right if select date 10 may, 2016 not change width of input in.

Comments
Post a Comment