11 Aug 2017 at 21:38 #1 unwashed potato! unwashed potato! Soldato Joined 12 Feb 2006 Posts 17,416 Location Surrey anyone know of a jquery image uploader that will allow a title or small description to be added with each image? needs to work with php
anyone know of a jquery image uploader that will allow a title or small description to be added with each image? needs to work with php
12 Aug 2017 at 02:39 #2 Dj_Jestar Dj_Jestar Caporegime Joined 18 Oct 2002 Posts 29,493 Location Back in East London HTML: <form action="/uploads"> <label>Image description: <input type="text" name="description" /> </label> <label>Image: <input type="file" name="image" /> </label> <button type="submit">Who the hell needs jQuery?</button> </form>
HTML: <form action="/uploads"> <label>Image description: <input type="text" name="description" /> </label> <label>Image: <input type="file" name="image" /> </label> <button type="submit">Who the hell needs jQuery?</button> </form>
13 Aug 2017 at 18:49 #3 Scotteh Scotteh Associate Joined 14 Sep 2011 Posts 1,365 Alternative find an existing jQuery uploader and modify it, such as https://www.sitepoint.com/10-jquery-file-uploads/
Alternative find an existing jQuery uploader and modify it, such as https://www.sitepoint.com/10-jquery-file-uploads/