Guest User

Untitled

a guest
Jul 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. $(document).ready(function(){
  2. var options = {
  3. target : "#responseTarget",
  4. iframeTarget : "#responseTarget",
  5. beforeSubmit: function(){
  6. $("<iframe name='iframeUploader' onload='init_iframe(window.iframeUploader);' />")
  7. .prependTo("#upload_preview")
  8. .attr({"id": "responseTarget"})
  9. .css({"border":"none","padding":"none","width":"150","height":"100"});
  10. },
  11. success: function(data) {alert("ASDASD");}, // Problem is in here...
  12. error: function(r){alert("An error..." + r);}
  13. };
  14.  
  15. $("#upload_form").ajaxForm(options);
  16. });
Add Comment
Please, Sign In to add comment