I am using Bootstrap with Clear Fork . I am working on a form in which users can upload images. I want to hide the submit button of the form until the user displays the image. Ideally, the submit button should also disappear when the user removes the file from the form. This is the first time I have used this plug. How can I do it?
<div class="fileupload fileupload-new" data-provides="fileupload"> <div class="fileupload-new thumbnail" style="width: 114px; height: 64px;"><img src="http://www.placehold.it/114x64/EFEFEF/AAAAAA" /></div> <div class="fileupload-preview fileupload-exists thumbnail" style="width: 114px; height: 64px;"></div> <span class="btn btn-file"><span class="fileupload-new">Select image</span><span class="fileupload-exists">Change</span><input type="file" /></span> <a href="#" class="btn fileupload-exists" data-dismiss="fileupload">Remove</a> <button type="submit" class="btn btn-primary">Upload</button> </div>
source share