Plugins
Plugins - Auto-URL
As of WebDDM 3.4, the "url" and "target" attributes are no longer available by default. This is because they have been replaced by a better system which we recommend you use.
Dependencies
To make this plugin work, you must include one JavaScript libary found in the js/ directory. Your code should look something like this if you need to use this plugin:
<script src="../js/core.WebDDM.compressed.js"></script>
<script src="../js/autourl.WebDDM.compressed.js">
	<!-- For WebDDM automatic URL creation -->
</script>
Usage
To use the plugin, simply define the "url" attribute in an item array:
'items':{
	1:{
		'content':'Click Here',
		'url':'index.html'
	}
}
Target
If you want to open a link in a new window or a frame, use the "target" attribute.
'items':{
	1:{
		'content':'Click Here',
		'url':'index.html',
		'target':'frame1'
	}
}
View Source
View CSS file - View JavaScript file.
Plugins
Plugins: Last - Next