Console is returning blank for the action attr. I\'ve moved the:
$(\'#file_upload\').attr(\'action\',\'io.cfm?action=updateitemfile&item_id=\'+$(\'.agenda-mo
Based on this comment on the attr() documentation, it appears that action must be capitalized to work in Firefox:
$('#file_upload').live('submit',function(event){
$(this).attr('ACTION','io.cfm?action=updateitemfile&item_id='+$('.agenda-modal').attr('data-defaultitemid'));
});
I've got money that says that breaks it in IE...