Examples

Minimal setup with jQuery plugin

Real Uploader does not require jQuery, so be sure to include the library if you want to use it as jQuery plugin. Real Uploader will automatically detect jQuery and will export itself as jQuery plugin.

Code

                        <!DOCTYPE html>
    <html>
    <head>
        <title>Minimal Example</title>
        <link rel="stylesheet" type="text/css" href="css/minimal.css" />
        <script src="js/jquery.js"></script>
        <script src="js/RealUploader.js"></script>
    </head>
    <body><div id="targetElement"></div>
    <script type="text/javascript">
    $("#targetElement").realuploader();
    </script>
    </body>
    </html>
                    

Result