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

Browse

Example code
<script>moxman.browse();</script>

Pick files for input

Example code
moxman.browse({fields: 'url'});

Pick files with callback

Browse

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});