Jump to content

How To Make This Code Work


jmc92

Recommended Posts

How do I make this code work?Thanks in advance to whoever can figure this out :)<input type="file" name="filevalue" value="submit"><input type="button" value="submit" onclick="window.frames['frame1'].location=filevalue.value"><iframe name="iframe1" src=""></iframe>

Link to comment
Share on other sites

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>Untitled Document</title><script type="text/javascript">/*<![CDATA[*//*---->*/function dothis(){var thisfile=document.getElementById("filevalue");var thisframe=document.getElementById("iframe1");thisframe.src=thisfile.value;}/*--*//*]]>*/</script> </head><body><form action="java script:void(null)" onsubmit="dothis()" method="post"><input type="file" name="filevalue" id="filevalue" value="" /><input type="submit" value="submit" /></form><iframe id="iframe1" name="iframe1" src=""></iframe> </body></html>

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...