Title: [Extra Feature] Loading bar with shortcode &amp; Jquery
Last modified: August 21, 2016

---

# [Extra Feature] Loading bar with shortcode & Jquery

 *  [peter-kallkwik](https://wordpress.org/support/users/peter-kallkwik/)
 * (@peter-kallkwik)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/extra-feature-loading-bar-with-shortcode-jquery/)
 * Thanks for the great plugin.
 * Thought I would add my addition.
 * On the shortcode version of the plugin, I have added a loading bar by adding 
   the following code into the main rad-dropbox-uploader.php file.
 * Firstly give the form the ID upload-file (id=”upload-file”)
 * On the line above the form add the following image code: (just under the string
   return message. (roughly line 123)
 * I have linked the image to one in my theme directory using [http://www.ajaxload.info/](http://www.ajaxload.info/)
   to make a loading gif.
 * `<img src="'.get_template_directory_uri().'/images/loadingbar.gif" style="display:
   none;" id="loading_image">`
 * In the head of your website add the following jquery:
 *     ```
       <script>
        $(document).ready(function() {
       $('#upload-file').submit(function() {
           $('#loading_image').show(); // show animation
           return true; // allow regular form submission
       }); });  </script>
       ```
   
 * [http://wordpress.org/extend/plugins/rad-dropbox-uploader/](http://wordpress.org/extend/plugins/rad-dropbox-uploader/)

Viewing 1 replies (of 1 total)

 *  [barleyg](https://wordpress.org/support/users/barleyg/)
 * (@barleyg)
 * [13 years ago](https://wordpress.org/support/topic/extra-feature-loading-bar-with-shortcode-jquery/#post-3717495)
 * I am a bit of a php novice. Can you please show me the exact code that you used
   in the rad-dropbox-uploader.php file.

Viewing 1 replies (of 1 total)

The topic ‘[Extra Feature] Loading bar with shortcode & Jquery’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/rad-dropbox-uploader.svg)
 * [RAD Dropbox Uploader](https://wordpress.org/plugins/rad-dropbox-uploader/)
 * [Support Threads](https://wordpress.org/support/plugin/rad-dropbox-uploader/)
 * [Active Topics](https://wordpress.org/support/plugin/rad-dropbox-uploader/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/rad-dropbox-uploader/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/rad-dropbox-uploader/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [barleyg](https://wordpress.org/support/users/barleyg/)
 * Last activity: [13 years ago](https://wordpress.org/support/topic/extra-feature-loading-bar-with-shortcode-jquery/#post-3717495)
 * Status: not resolved