So i have this picker:
http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/
Now, how can I prepend the date/daterange you choose into div element #viewCalender, when you chose a date? I tried do:
<script type="text/javascript">
$(function(){
$('#rangeA').daterangepicker({
arrows:true,
onChange: function(){
$('#calenderView').prepend('test');
}
});
});
</script>
But It prepends "test" twice into #calenderView, even tried with just alerts, and i get two alerts, after i picked a date, which I do not understand why??? And how can i prepend the date/daterange into it?