Skip to content

Latest commit

 

History

History
55 lines (49 loc) · 1.46 KB

File metadata and controls

55 lines (49 loc) · 1.46 KB

JASNY BOOTSTRAP FILE INPUT AUTO

Fileinput with or without image view. Automatically change input file into Jasny Bootstrap Fileinput which is an extension to vanilla Bootsrap 3. See example index.html.

Dependencies js & css

Usage via JS

include all depandencies and init like this:

$('input[type=file]').fileinputAuto();

Usage via DATA attr

include all depandencies and init like this:

<input type="file" data-fia-auto="true">

Options JS

$('input[type=file]').fileinputAuto({
	btnSelect: "Select image",
	btnRemove: "Remove",
	btnChange: "Change",
	thumbnail: false,	// enable image preview, if false options below are omitted
	width: 300,
	height: 300,
	defaultImage: '',	// myimage.jpg, if is given options below are omitted
	fakeimg: false,		// fake image -> http://fakeimg.pl	
	message: 'No image'	// text shown in thumbnail
});

Options via DATA attr

<input type="file" 
		data-fia-auto="true" 
		data-fia-select="Select image" 
		data-fia-remove="Remove" 
		data-fia-change="Change" 
		data-fia-thumbnail="true"
		data-fia-width="300" 
		data-fia-height="300" 
		data-fia-image=""
		data-fia-fakeimg="false"
		data-fia-message="No image">