I want when I click the submit button, a pop up name-based greeting alert appears.
(sorry for my bad English)
Kind of like this maybe?
HTML element:
<button onclick="myFunction()">Click me</button>
in your js file:
function myFunction() {
alert("Hello my name is..")
}