Autolist - Classifieds, Directory, Multipurpose Listing HTML Template

Select2

Select2 is a jQuery based replacement for select boxes. It supports searching, remote data sets, and infinite scrolling of results.General Select2 HTML structure in Autolist template. Here is the Folder structure.

1. You need to add these files to make it work.
	
		
	
	
    
	<!--Select2 js -->
	<script src="../assets/plugins/select2/select2.full.min.js"></script>
	<script src="../assets/js/select2.js"></script>

	
	
Type URL
Plugin Link https://select2.org//
Date Picker

DataTables is very simple to use as a jQuery plug-in with a huge range of customizable option..

1. You need to add these files to make it work.
	
		
	
	
    


		<!-- Datepicker js -->
		<script src="../assets/plugins/date-picker/spectrum.js"></script>
		<script src="../assets/plugins/date-picker/jquery-ui.js"></script>
		<script src="../assets/plugins/input-mask/jquery.maskedinput.js"></script>

	
	

Open date-picker .js file (../../assets/js/date-picker.js) You can see below js



$('.fc-datepicker').datepicker({
 showOtherMonths: true,
 selectOtherMonths: true
});

$('#datepickerNoOfMonths').datepicker({
 showOtherMonths: true,
 selectOtherMonths: true,
 numberOfMonths: 2
});

		
	
Type URL
Plugin Link http://jqueryui.com/datepicker/