When I have a strongly typed model like so
@model Person.Models.Person
Can I access the values in jQuery?
Furthermore, if I have an input like this, and it is edited, is the value stored in my model also changed?
<input type="text" class="form-control" value="@Model.FirstName" id="FirstName" placeholder="First Name">
I'm new to MVC, so I don't really understand this @model
My sincere thanks for your answers