No Flash, How do i handle jcupload ?
Posted
by acidzombie24
on Stack Overflow
See other posts from Stack Overflow
or by acidzombie24
Published on 2010-03-23T21:37:28Z
Indexed on
2010/03/24
2:53 UTC
Read the original article
Hit count: 395
I am using http://www.jcupload.com/ (basic) to upload files. I am considering having a friend write a more custom version or to do magic with ajax; so the solution should be able to work without that.
With jcupload i include css, a script and write <div id="jcupload_content"></div>
in my html and i am done. Problem is, with no flash i get an object box. Instead i would like is an iframe or a html form to upload the file.
How do i do this? Should i detect flash from javascript and overload the div myself if no flash is available? How do i detect if flash is available? with jquery i know i can write something like $('#jcupload_content').innerHtml = blah; How do i handle the flash part?
© Stack Overflow or respective owner