<html>
<head>
<script>
function displayResult()
{
var x=document.getElementById("submit1").name;
alert(x);
}
</script>
</head>
<body>
<form>
Email: <input type="text" id="email">
<input type="submit" name="submit1" id="submit1">
</form>
<button type="button" onclick="displayResult()">Display name of Submit button</button>
</body>
</html>