Hi there,
I need help grasping this,
I'm currently learning html and I've come to a point in a tutorial where the below code is involved:
The part that I don't understand is that form action equals hash ? As far as I know form action should equal a link and then the selected option value could then be stored in the link destination ?<html>
<head>
<title></title>
</head>
<body>
<form action="#">
<select name="favorite">
<option value="HTML">HTML</option>
<option value="CSS">CSS</option>
<option value="Javascript">Javascript</option>
</select>
</form>
</body>
</html>
My question here is what does it mean when form action is equal to hash ?


Reply With Quote
Bookmarks