I'm pretty new to javascript and jQuery. I'm using Uploadify to upload images to the server. There are multiple Uploader objects on the page. I need to pass the id of the Uploader object being used to the server. This is what I have so far:
$('input.ImageUpload').uploadify({
...
'scriptData': {'id': ??????},
...
});
How can I make this happen? I've tried "this.id" and "$(this).attr('id')". Am I even going about this in the correct way?