Guest User

Untitled

a guest
Jul 15th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. $('#ticket_add_file_upload').uploadify({
  2. {/literal}
  3. 'uploader' : '{$baseUrl}scripts/uploadify.swf',
  4. 'script' : '{$baseUrl}product/ticket_upload/productid/{$iProductID}/',
  5. 'cancelImg' : '{$baseUrl}images/cancel.png',
  6. 'auto' : false,
  7. 'folder' : '/uploads'
  8. onAllComplete : function() { $("form[name='ticket_add']").submit(); }
  9. {literal}
  10. });
  11.  
  12.  
  13. $('form[name='ticket_add'] submit').click(function() {
  14. $('#ticket_add_file_upload').uploadifyUpload(); // Start the upload
  15. return false;
  16. });
Add Comment
Please, Sign In to add comment