Gets or sets the URL to the page files are posted to.
$au.imageUploaderFlash({ uploadSettings: { //...other params... actionUrl: ".", //...other params... } })Get/Set Value at Runtime
$au.imageUploaderFlash('uploaderID').uploadSettings().actionUrl(value); value = $au.imageUploaderFlash('uploaderID').uploadSettings().actionUrl();
Type: String
The URL to the page files are posted to.
Default value is ".".
That page should contain the server code which parses the upload request, saves files to necessary folders on server and performs any other additional actions. If you want to submit files to the same page where Image Uploader Flash is hosted, specify the dot character (.) as a value of this property.