Skip to main content

Posts

Showing posts from August, 2013

Simple jQuery multiple file uploading manager

In following segment refers how to create dynamically add multiple files uploading fields in forms.  Copy and paste following code segment into html file. Then open it in a browser and try out the demo. (I have used the on-line reference for the jquery-1.10.1.min.js , else download it from http://jquery.com/download/ ) <html> <script src="http://code.jquery.com/jquery-1.10.1.min.js">     /**      * Above is for on-line reference for jQuery.      * If above is not worked, please download the jquery-1.10.1.min.js from here. http://jquery.com/download/      *      */ </script> <script type="text/javascript" xmlns="http://www.w3.org/1999/html">     $(document).ready(function () {         var counter = 2;         $("#addButton").click(function () {      ...