Hi Guys, I am trying to use uploadify plugin in my asp.net project. My html fileupload controls are created at runtime.So I have added then a Class attribute 'uploadable'.
$(document).ready(function() {
var fileID = $("#ctl00_ContentPlaceHolder1_ctl04_hdnPhotoId").val();
I need to call uploadify function from other javascript function.
function call() { // $('#file_upload').uploadifyUpload(); this works when I was using single control $('.uploadable').uploadifyUpload(); //Not working }