2017 © Pedro Peláez
 

library bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

image

kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  • Wednesday, July 25, 2018
  • by kartik-v
  • Repository
  • 335 Watchers
  • 3710 Stars
  • 1,392,401 Installations
  • JavaScript
  • 22 Dependents
  • 1 Suggesters
  • 1801 Forks
  • 50 Open issues
  • 60 Versions
  • 8 % Grown

The README.md

Krajee Logo
bootstrap-fileinput
Donate       kartikv

[![Financial Contributors on Open Collective](https://opencollective.com/bootstrap-fileinput/all/badge.svg?label=financial+contributors)](https://opencollective.com/bootstrap-fileinput) [![Latest Stable Version](https://poser.pugx.org/kartik-v/bootstrap-fileinput/v/stable)](https://packagist.org/packages/kartik-v/bootstrap-fileinput) [![License](https://poser.pugx.org/kartik-v/bootstrap-fileinput/license)](https://packagist.org/packages/kartik-v/bootstrap-fileinput) [![Packagist Downloads](https://poser.pugx.org/kartik-v/bootstrap-fileinput/downloads)](https://packagist.org/packages/kartik-v/bootstrap-fileinput) [![Monthly Downloads](https://poser.pugx.org/kartik-v/bootstrap-fileinput/d/monthly)](https://packagist.org/packages/kartik-v/bootstrap-fileinput)

An enhanced HTML 5 file input for Bootstrap 5.x, 4.x, and 3.x with file preview for various files, offers multiple selection, resumable chunk uploads, and more. The plugin allows you a simple way to setup an advanced file picker/upload control built to work specially with Bootstrap 5.x, 4.x, and 3.x CSS3 styles. It enhances the file input functionality further, by offering support to preview a wide variety of files i.e. images, text, html, video, audio, flash, and objects. In addition, it includes AJAX based uploads, dragging & dropping files, viewing upload progress, and selectively previewing, adding, or deleting files., (*1)

NEW: Bootstrap 5.x support is added from v5.2.0 (major release after v5.1.5) of the plugin. With v5.2.0, the plugin is able to automatically detect the bootstrap library version and deliver the relevant bootstrap specific functionality (if the bootstrap library JS file is loaded). Alternatively, check the $.fn.fileinputBsVersion setting for advanced use cases to avoid Bootstrap version detection issues., (*2)

NOTE: Version 5.x is a significant rewrite. With version 5.x, the plugin code has been revamped with enhanced file management, resumable chunk uploads support, and other new features. You can go through the various closed enhancements and features and documented for Release 5.x milestone., (*3)

Krajee Default Theme, (*4)

NOTE: An alternative new Krajee Explorer Theme (preview shown below) for bootstrap-fileinput has been released and available since v4.3.7. For more theming options and suggestions refer the theming demos., (*5)

Krajee Explorer Theme, (*6)

Documentation and Demo

View the plugin documentation and plugin demos at Krajee JQuery plugins., (*7)

Pre-requisites

  1. Bootstrap 5.x or 4.x, or 3.x
  2. Latest JQuery
  3. Most modern browsers supporting HTML5 (inputs and FileReader API) including CSS3 & JQuery. For Internet Explorer, one must use IE versions 10 and above. IE9 and below will work as a normal file input, and will not support multiple file selection or the HTML 5 FileReader API.
  4. With release 4.0, AJAX uploads are supported. AJAX uploads require that the browser support HTML5 FormData and XHR2 (XMLHttpRequest 2). Most modern browsers support FormData and XHR2. The plugin will automatically degrade to normal form based submission for browsers not supporting AJAX uploads

NOTE: - Bootstrap 5.x is supported in addition to Bootstrap 3.x and 4.x since release v5.2.0. Refer the CHANGE LOG for details. - Bootstrap 4.x is supported in addition to Bootstrap 3.x since release v4.4.4. Refer the CHANGE LOG for details. - You can use the sass branch for installation using bootstrap-sass dependency. The master branch can be used for installation using plain bootstrap dependency., (*8)

Installation

Using Bower

To install using the bower package manager run:, (*9)

bower install bootstrap-fileinput

Using NPM

To install using the npm package manager run:, (*10)

npm install bootstrap-fileinput

Using Composer

To install using the composer package manager run:, (*11)

$ php composer.phar require kartik-v/bootstrap-fileinput "@dev"

or add:, (*12)

"kartik-v/bootstrap-fileinput": "@dev"

to your composer.json file, (*13)

Manual Install

You can also manually install the plugin easily to your project. Just download the source ZIP or TAR ball and extract the plugin assets (css and js folders) into your project., (*14)

Usage

Step 1: Load the following assets on your page in the order mentioned., (*15)


<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" crossorigin="anonymous">


<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.min.css" crossorigin="anonymous">





<link href="https://cdn.jsdelivr.net/gh/kartik-v/bootstrap-fileinput@5.5.4/css/fileinput.min.css" media="all" rel="stylesheet" type="text/css" />




























With v5.2.1, the plugin is able to automatically detect the bootstrap library version and deliver the relevant bootstrap specific functionality (if you have loaded the bootstrap.min.js before fileinput.min.js). In case of any issues - you can explicitly set the bootstrap version by setting the following variable before the plugin initialization script., (*16)

// set this before initializing the fileinput plugin
$.fn.fileinputBsVersion = '3.4.1'; // for example if using bootstrap css 3.4.1 version

If you noticed, you need to load the jquery.min.js and bootstrap.min.css in addition to the fileinput.min.css and fileinput.min.js. The theme file themes/fa/theme.js can be optionally included for the font awesome icons styling. The locale file <lang>.js can be optionally included for translating for your language if needed., (*17)

Optional Dependent Plugins, (*18)

  • The piexif.min.js file is the source for the Piexifjs plugin by hMatoba. It is required to be loaded before fileinput.min.js if you wish to use the image resize feature of the bootstrap-fileinput plugin.
  • The sortable.min.js file is the source for the Sortable plugin by rubaxa. It is required to be loaded before fileinput.min.js if you wish to sort the thumbnails in the initial preview.

For ease of access, the sources for the above plugins are included in the js/plugins folder of this project repository., (*19)

Step 2: Initialize the plugin on your page. For example,, (*20)

// HTML markup
<input id="input-id" name="file-data" type="file">






The #input-id is the identifier for the input (e.g. type = file) on your page, which is hidden automatically by the plugin., (*21)

Alternatively, you can directly call the plugin options by setting data attributes to your input field. To auto initialize the plugin with just HTML markup - add the CSS class file to your file input markup element., (*22)

<input id="input-id" type="file" class="file" data-preview-file-type="text" >

NOTE: When initializing the plugin via javascript (as mentioned earlier), do not add the CSS class file to the input markup (else you would get an erronaeous / inconsistent output)., (*23)

Contributors

Code Contributors

This project exists thanks to all the people who contribute. [Contribute]. , (*24)

Financial Contributors

Become a financial contributor and help us sustain our community. [Contribute], (*25)

Individuals

, (*26)

Organizations

Support this project with your organization. Your logo will show up here with a link to your website. [Contribute], (*27)

, (*28)

License

bootstrap-fileinput is released under the BSD-3-Clause License. See the bundled LICENSE.md for details., (*29)

The Versions

25/07 2018

dev-master

9999999-dev https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

25/07 2018

dev-sass

dev-sass https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

25/07 2018

v4.4.9

4.4.9.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

11/04 2018

v4.4.8

4.4.8.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

22/01 2018

v4.4.7

4.4.7.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

13/11 2017

v4.4.6

4.4.6.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

01/10 2017

v4.4.5

4.4.5.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

21/09 2017

v4.4.4

4.4.4.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

27/08 2017

v4.4.3

4.4.3.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

24/06 2017

v4.4.2

4.4.2.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

25/05 2017

v4.4.1

4.4.1.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

14/05 2017

v4.4.0

4.4.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

02/04 2017

v4.3.9

4.3.9.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

21/02 2017

v4.3.8

4.3.8.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

12/02 2017

v4.3.7

4.3.7.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

17/12 2016

v4.3.6

4.3.6.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

20/09 2016

v4.3.5

4.3.5.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

07/08 2016

v4.3.4

4.3.4.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

09/07 2016

v4.3.3

4.3.3.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

11/06 2016

v4.3.2

4.3.2.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

28/02 2016

v4.3.1

4.3.1.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

25/01 2016

v4.3.0

4.3.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

21/01 2016

v4.2.9

4.2.9.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

18/11 2015

v4.2.8

4.2.8.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

13/09 2015

v4.2.7

4.2.7.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

26/08 2015

v4.2.6

4.2.6.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

26/07 2015

v4.2.5

4.2.5.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

22/07 2015

v4.2.4

4.2.4.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

21/06 2015

v4.2.3

4.2.3.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

18/06 2015

v4.2.2

4.2.2.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

14/06 2015

v4.2.1

4.2.1.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD-3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

10/05 2015

v4.2.0

4.2.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

02/05 2015

v4.1.9

4.1.9.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

31/03 2015

v4.1.8

4.1.8.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

13/02 2015

v4.1.7

4.1.7.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

22/01 2015

v4.1.6

4.1.6.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

12/01 2015

v4.1.5

4.1.5.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

27/12 2014

v4.1.4

4.1.4.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

20/12 2014

v4.1.3

4.1.3.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

20/12 2014

v4.1.2

4.1.2.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

18/12 2014

v4.1.1

4.1.1.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

16/12 2014

v4.1.0

4.1.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, ajax uploads, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap ajax upload delete image input multiple progress preview

16/12 2014

v4.0.0

4.0.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

08/12 2014

v3.0.0

3.0.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

23/11 2014

v2.9.0

2.9.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

13/11 2014

v2.8.0

2.8.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

11/11 2014

v2.7.0

2.7.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

22/10 2014

v2.6.0

2.6.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

13/10 2014

v2.5.0

2.5.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

05/10 2014

v2.4.0

2.4.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with features for file preview for many file types, multiple selection, and more.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input multiple preview

18/09 2014

v2.3.0

2.3.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

20/08 2014

v2.2.0

2.2.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

14/08 2014

v2.1.0

2.1.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

31/07 2014

2.0.0

2.0.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

28/07 2014

v1.9.0

1.9.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

19/07 2014

v1.8.0

1.8.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

08/07 2014

v1.7.0

1.7.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

15/06 2014

v1.6.0

1.6.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

23/05 2014

v1.5.0

1.5.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview

07/05 2014

v1.0.0

1.0.0.0 https://github.com/kartik-v/bootstrap-fileinput

An enhanced HTML 5 file input for Bootstrap 3.x with file preview, multiple selection, and more features.

  Sources   Download

BSD 3-Clause

file jquery bootstrap upload image input preview