HTML PROBLEM
HTML PROBLEM
Out of context: Reply #12
- Started
- Last post
- 15 Responses
- mitsu0
this is a simple procedure. i do it all the time:
1.) create the file input tag and call it myfileinput
2.) set its display to none
3.) create your image tag
4.) put the following in the image tag: onclick='getfile();'
5.)in your script tags put the following:
function getfile(){
myfileinput.click();
}
6.) eat some pie.