Missy Suraj

Greenhorn
+ Follow
since Mar 31, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Missy Suraj

Hi All!

This is my small html with javascript.
can any one explain me this javascript functionality and
what is var name={};
Is it a Array???




<html>
<head>
<title> global variable</title>
<script>
var name={};

function A(){
name.value="Arun";
enable();
}
function B(){
name.value="Karthik";
enable();
}

function enable(){
var value=name.value;
alert(value); // onclicking First Button its answer is Arun , onclicking Second Button its answer is Karthik.
}
</script>
<body>
<input type="button" value="First" onClick="A()"/>
<input type="button" value="Second" onClick="B()"/>

</body>
</html>


thanks

Hi All!

i want to have file filter in html file upload.
My code is

<input type="file" accept="application/xml,appliocation/csv" />

this is working fine in opera but not in browsers like IE and Mozilla..

Any help???

thanks
13 years ago