Demos
Some live demos of the product, please note that some operations are not permitted in demo mode.
Stand-alone
If you are using MoxieManager Stand-alone, first include this script.
<script src="<yourpath>/moxiemanager/js/moxman.loader.min.js"></script>
Then you can use these snipplets, either on buttons or wherever you like.
Browse files
Example code
<script>moxman.browse();</script>
Pick files for input
Example code
moxman.browse({fields: 'url'});
Pick files with callback
Example code
moxman.browse({
oninsert: function(args) {
console.log(args.files[0].url);
}
});
Get absolute urls
Example code
moxman.browse({fields: 'absurl', no_host: true});