antony / grails-ajax-uploader

The Grails Ajax-Uploader plugin is a Grails Tag Library which implements Andrew Valum's excellent file uploader. Supporting drag and drop, progress/status updates, multiple file uploads and more for your application. Visit http://www.grails.org/plugin/ajax-uploader for detailed documentation and feature list.
http://www.grails.org/plugin/ajax-uploader
15 stars 15 forks source link

wrap DOM query on a jquery ready call ensuring DOM is stable. #21

Closed jmorrispa closed 10 years ago

jmorrispa commented 10 years ago

Had an issue using this plugin on a heavy html page using Chrome 31.0.1650.57. The call "document.getElementById('au-${currentUploaderUid}'" was returning null. Waiting for the DOM to stabilize using jquery ready event solved the problem.

antony commented 10 years ago

Thanks for this :)