jquery - Fancybox JavaScript XMLHttpRequest request binary data -


i make xmlhttprequest customer header domain. data can text or binary. show data text, image, pdf etc. in fancybox , download box if data cannot displayed.

below code use. text displayed ok, image displayed text.

var invocation = new xmlhttprequest();  invocation.open('get', url, false); invocation.setrequestheader("authorization", $.trim(header));  invocation.send();   $.fancybox({     'autosize': true,     'enableescapebutton' : true,     'overlayshow' : true,     'overlayopacity' : 0,     'hideonoverlayclick' : false,     'content' : invocation.response,     'type':invocation.getresponseheader('content-type') }); 

can me fix this?


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -